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