code-examples/2024/07/golang_demo1/handlers/structures.go

18 lines
235 B
Go

package handlers
type PersonRequest struct {
Name string
Age int
}
type PersonResponse struct {
Greeting string
Errors string
}
type StatusResponse struct {
StartDateTime string
UpTime string
Status string
}