12 lines
116 B
Go
12 lines
116 B
Go
package models
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func init() {
|
|
c := GetConfig()
|
|
// configure storage
|
|
fmt.Println(c.MongoUrl)
|
|
}
|