tag.go 103 B

1234567
  1. package model
  2. type Tag struct {
  3. ID uint64 `db:"id"`
  4. Tag string `db:"tag"`
  5. URL string `db:"url"`
  6. }