10 lines
148 B
Go
10 lines
148 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/BlackBroker/trashlog/app"
|
||
|
"github.com/skeris/appInit"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
appInit.Initialize(app.New, getEnv())
|
||
|
}
|