summaryrefslogtreecommitdiff
path: root/app/cmd/main.go
blob: c13de97ac0f62ee5804ed2731aeeb597c5b92977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
	"net/http"
)

func init() {
	// Initialize the application
}

func main() {

	mux := http.NewServeMux()
	// Start the application
	mux.HandleFunc("GET /", func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte("Hello, World!"))
	})

	panic(http.ListenAndServe(":2030", mux))
}