Skip to content

Instantly share code, notes, and snippets.

@kkdai
Created January 13, 2023 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkdai/e186c9ed2b088b3f30e5d2e9cee62668 to your computer and use it in GitHub Desktop.
Save kkdai/e186c9ed2b088b3f30e5d2e9cee62668 to your computer and use it in GitHub Desktop.
type GroupDB interface {
ReadGroupInfo(string) GroupData
AppendGroupInfo(string, MsgDetail)
}
type MsgDetail struct {
MsgText string
UserName string
Time time.Time
}
type GroupData []MsgDetail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment