2
1
Fork 0
swim/comment.go

12 lines
181 B
Go

package main
import (
"time"
)
type Comment struct {
User string `json:"CommentUser"`
Body string `json:"CommentBody"`
Created time.Time `json:"CommentCreated"`
}