oc-auth/models/auth.go

13 lines
136 B
Go
Raw Permalink Normal View History

2024-07-26 13:46:05 +02:00
package models
import (
"fmt"
"oc-auth/conf"
)
func init() {
c := conf.GetConfig()
// configure storage
fmt.Println(c.NatsUrl)
}