8 lines
103 B
Go
8 lines
103 B
Go
package server
|
|
|
|
// Main runs the main loop of the web server.
|
|
func Main() {
|
|
app := New()
|
|
app.Run()
|
|
}
|