accounts-profiles-endpoint/main.go

17 lines
178 B
Go
Raw Permalink Normal View History

2023-11-17 09:23:57 +05:30
package main
import (
"fmt"
2024-09-22 18:46:25 +05:30
"os"
2023-11-17 09:23:57 +05:30
2024-10-01 05:19:23 +05:30
"ely.by/accounts-profiles-endpoint/internal/cmd"
2023-11-17 09:23:57 +05:30
)
func main() {
2024-09-22 18:46:25 +05:30
err := cmd.Serve()
2024-06-09 06:54:15 +05:30
if err != nil {
2024-09-22 18:46:25 +05:30
fmt.Println(err)
os.Exit(1)
2023-11-17 09:23:57 +05:30
}
}