oc-workflow/models/workflow.go

13 lines
141 B
Go
Raw Normal View History

2024-07-11 11:40:11 +02:00
package models
import (
"fmt"
2024-07-11 15:40:34 +02:00
"oc-workflow/conf"
2024-07-11 11:40:11 +02:00
)
func init() {
2024-07-11 15:40:34 +02:00
c := conf.GetConfig()
2024-07-11 11:40:11 +02:00
// configure storage
fmt.Println(c.MongoUrl)
}