2021-02-16 12:18:41 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/skeris/appInit"
|
2024-07-04 18:56:41 +00:00
|
|
|
"penahub.gitlab.yandexcloud.net/external/trashlog/app"
|
2024-07-25 18:23:04 +00:00
|
|
|
_ "penahub.gitlab.yandexcloud.net/devops/linters/golang.git/pkg/dummy"
|
2021-02-16 12:18:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2022-06-25 12:20:39 +00:00
|
|
|
appInit.Initialize(app.New, app.Options{})
|
2024-05-21 15:19:48 +00:00
|
|
|
}
|