17 lines
178 B
Go
Raw Normal View History

2023-11-17 04:53:57 +01:00
package main
import (
"fmt"
2024-09-22 15:16:25 +02:00
"os"
2023-11-17 04:53:57 +01:00
2024-10-01 01:49:23 +02:00
"ely.by/accounts-profiles-endpoint/internal/cmd"
2023-11-17 04:53:57 +01:00
)
func main() {
2024-09-22 15:16:25 +02:00
err := cmd.Serve()
2024-06-09 03:24:15 +02:00
if err != nil {
2024-09-22 15:16:25 +02:00
fmt.Println(err)
os.Exit(1)
2023-11-17 04:53:57 +01:00
}
}