stub out tags

This commit is contained in:
Dan Ballard 2015-05-05 08:31:28 -07:00
parent c5ba1b3041
commit b5489c4d6b
1 changed files with 18 additions and 0 deletions

18
tags/tags.go Normal file
View File

@ -0,0 +1,18 @@
package tags
import (
"database/sql"
_ "github.com/lib/pq"
)
type Tag struct {
Name string
Parent int
Children []int
}
var Tags map[int]*Tag
func LoadTags(DB *sql.DB) {
}