1package atc
2
3import "time"
4
5type Wall struct {
6	Message string        `json:"message,omitempty"`
7	TTL     time.Duration `json:"TTL,omitempty"`
8}
9