add working signup + login

This commit is contained in:
sam 2023-09-04 03:33:13 +02:00
parent bc85b7c340
commit d8cb8c8fa8
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
27 changed files with 600 additions and 39 deletions

View file

@ -14,6 +14,7 @@ type WebConfig struct {
}
type CoreConfig struct {
Postgres string `toml:"postgres"`
Dev bool `toml:"dev"`
Postgres string `toml:"postgres"`
Dev bool `toml:"dev"`
SecretKey string `toml:"secret_key"`
}