2024-02-19 18:27:12 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/skeris/appInit"
|
2024-06-12 18:14:14 +00:00
|
|
|
"penahub.gitlab.yandexcloud.net/backend/quiz/answerer/app"
|
2024-02-19 18:27:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
appInit.Initialize(app.New, app.Options{})
|
|
|
|
}
|