🐛 Bug fixes in update avatar

This commit is contained in:
2024-05-18 20:39:46 +08:00
parent fd5bbd732f
commit ee4f929d6c
3 changed files with 44 additions and 43 deletions

View File

@ -53,6 +53,11 @@ func main() {
log.Info().Msg("Successfully setup firebase communication.")
}
// Connect other services
if err := grpc.ConnectPaperclip(); err != nil {
log.Fatal().Err(err).Msg("An error occurred when connecting to paperclip...")
}
// Server
server.NewServer()
go server.Listen()