notify.moe/server/Main.go

8 lines
103 B
Go

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