All checks were successful
ci/woodpecker/push/build Pipeline was successful
Signed-off-by: Nikolai Rodionov <iam@allanger.xyz>
12 lines
155 B
Go
12 lines
155 B
Go
package main
|
|
|
|
import (
|
|
"gitea.badhouseplants.net/softplayer/softplayer-backend/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Run(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|