The new logbot, not committed from the wrong terminal window this time.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
221 B

  1. package models
  2. import "time"
  3. // A Post is a post.
  4. type Post struct {
  5. ID string `json:"id"`
  6. Time time.Time `json:"time"`
  7. Kind string `json:"kind"`
  8. Nick string `json:"nick"`
  9. Text string `json:"text"`
  10. }