Implement authentication

This commit is contained in:
Pijus Kamandulis
2024-02-21 23:40:54 +02:00
parent 790192bf5a
commit 6a40492c7b
11 changed files with 227 additions and 3 deletions

View File

@@ -4,6 +4,7 @@ type ServerConfig struct {
DatabaseAccount string
DatabaseDomain string
DatabaseEndpoint string
AccountKey string
ExplorerPath string
Port int
@@ -11,4 +12,5 @@ type ServerConfig struct {
TLS_CertificatePath string
TLS_CertificateKey string
DataFilePath string
DisableAuth bool
}