15 lines
216 B
Go
15 lines
216 B
Go
package initialize
|
|
|
|
import (
|
|
"gitea.micah.wiki/pandora/starter/app/config"
|
|
"gitea.micah.wiki/pandora/starter/pkg/logx"
|
|
)
|
|
|
|
func Init(args []string) {
|
|
config.Init(args)
|
|
logx.Init()
|
|
}
|
|
func Close() {
|
|
logx.Close()
|
|
}
|