cmd folder was created

This commit is contained in:
Rasa 2026-03-31 02:32:24 -07:00
parent cfe3b6521c
commit c0aa3a0b36
1 changed files with 15 additions and 0 deletions

15
cmd/staffapp/main.go Normal file
View File

@ -0,0 +1,15 @@
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
fmt.Println(" Staffapp Server Starting...")
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Staffapp OK!")
})
log.Fatal(http.ListenAndServe(":8080", nil))
}