Files
mangaGetter/develop.go
2024-06-04 20:45:45 +02:00

16 lines
198 B
Go

//go:build Develop
package main
func getSecretPath() (string, error) {
return "", nil
}
func getSecret() (string, error) {
return "test", nil
}
func getDbPath() string {
return "db.sqlite"
}