mirror of
https://github.com/elyby/accounts-profiles-endpoint.git
synced 2024-11-25 16:28:56 +05:30
17 lines
178 B
Go
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)
|
|
}
|
|
}
|