stub out tags
This commit is contained in:
parent
c5ba1b3041
commit
b5489c4d6b
|
@ -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) {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue