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