We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836b340 commit fe8bfe0Copy full SHA for fe8bfe0
main.go
@@ -23,12 +23,11 @@ func main() {
23
24
// Parse the port number
25
portPtr := flag.Int("port", 8080, "port to listen on")
26
-
27
- //Start the server on the specified port
28
- server.StartServer(*portPtr)
29
+
30
//Print the banner
31
pterm.DefaultCenter.Println(pterm.DefaultHeader.WithFullWidth().WithBackgroundStyle(pterm.NewStyle(pterm.BgLightRed)).WithMargin(10).Sprint("Athena: The Intelligent Q&A Search Engine"))
32
pterm.Info.Println("(c)2022 by Akhil Datla")
33
+ //Start the server on the specified port
+ server.StartServer(*portPtr)
34
}
0 commit comments