Login

This commit is contained in:
2024-02-02 00:53:22 +08:00
parent 434773976f
commit 19e1775476
15 changed files with 236 additions and 165 deletions

View File

@ -42,11 +42,11 @@ func main() {
go server.Listen()
// Messages
log.Info().Msgf("Passport v%s is started...", interactive.AppVersion)
log.Info().Msgf("Interactive v%s is started...", interactive.AppVersion)
quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
log.Info().Msgf("Passport v%s is quitting...", interactive.AppVersion)
log.Info().Msgf("Interactive v%s is quitting...", interactive.AppVersion)
}