feat: Initialize frontend and backend structure with essential configurations and entities

This commit is contained in:
2025-03-09 10:55:00 +00:00
parent 609bc904ea
commit 2f469c1830
25 changed files with 5863 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Hello from the Time Tracker Backend!")
}
func main() {
http.HandleFunc("/", helloHandler)
fmt.Println("Server listening on port 8080")
http.ListenAndServe(":8080", nil)
}