oc-auth/models/auth.go
2024-07-26 13:46:05 +02:00

13 lines
136 B
Go

package models
import (
"fmt"
"oc-auth/conf"
)
func init() {
c := conf.GetConfig()
// configure storage
fmt.Println(c.NatsUrl)
}