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
}