stub out tags

This commit is contained in:
Dan Ballard 2015-05-05 08:31:28 -07:00
父節點 c5ba1b3041
當前提交 b5489c4d6b
共有 1 個檔案被更改,包括 18 行新增0 行删除

18
tags/tags.go Normal 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) {
}