feat: initial auth service support

This commit is contained in:
nihonium 2025-11-15 02:53:25 +03:00
parent 6ed47b667c
commit bbe57e07d5
Signed by: nihonium
GPG key ID: 0251623741027CFC
10 changed files with 938 additions and 1 deletions

6
modules/auth/types.go Normal file
View file

@ -0,0 +1,6 @@
package main
type Config struct {
JwtPrivateKey string
LogLevel string `toml:"LogLevel" env:"LOG_LEVEL"`
}