receipt_indexer/backend/cmd/api/health.go
Ethan Wellenreiter aa1b8d1d1b Fresh restructuring of project. Now with cmd, internal, and bin folder
Should be good for future microservices and such

Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2025-04-18 01:35:21 -04:00

9 lines
144 B
Go

package main
import "net/http"
func (app *application) healthCheckHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("ok"))
}