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

18 lines
235 B
Go
Raw Permalink Normal View History

2024-07-06 13:39:34 +00:00
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
}