12 lines
196 B
Go
12 lines
196 B
Go
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()
|
|
}
|