17 lines
235 B
Go
17 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
|
|
}
|