hibiscus/internal/app/main.go

13 lines
196 B
Go
Raw Permalink Normal View History

2024-10-21 16:46:25 +03:00
package app
import (
"git.a71.su/Andrew71/hibiscus-txt/internal/logging"
"git.a71.su/Andrew71/hibiscus-txt/internal/server"
)
func Execute() {
FlagInit()
logging.LogInit()
server.Serve()
}