Files
mangaGetter/develop.go
2024-05-21 16:36:40 +02:00

14 lines
145 B
Go

//go:build Develop
package main
const port = 8080
func getSecret() string {
return "test"
}
func getDbPath() string {
return "db.sqlite"
}