Sqlite journal mode (#54)

This commit is contained in:
Thomas Miceli
2023-06-09 15:25:41 +02:00
committed by GitHub
parent b2a56fe5a0
commit 3366cde385
6 changed files with 36 additions and 2 deletions

10
internal/utils/slice.go Normal file
View File

@ -0,0 +1,10 @@
package utils
func SliceContains(slice []string, item string) bool {
for _, s := range slice {
if s == item {
return true
}
}
return false
}