accounts-profiles-endpoint/main.go
2024-10-01 01:49:23 +02:00

17 lines
178 B
Go

package main
import (
"fmt"
"os"
"ely.by/accounts-profiles-endpoint/internal/cmd"
)
func main() {
err := cmd.Serve()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}