8 lines
103 B
Go
Raw Normal View History

package server
// Main runs the main loop of the web server.
func Main() {
app := New()
app.Run()
}