Merge pull request 'cmd folder was created' (#255) from fix/staffapp-cmd into develop

Reviewed-on: ebhomengo/niki#255
Reviewed-by: hossein <h.nazari1990@gmail.com>
This commit is contained in:
hossein 2026-04-01 06:03:30 +00:00
commit a193abeb56
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))
}