2
1
Fork 0
swim/comment.go

12 lines
109 B
Go

package main
import (
"time"
)
type Comment struct {
User string
Body string
Created time.Time
}