chore(dashboard): move to the mod directory

This commit is contained in:
Brandon Philips
2013-10-08 11:17:12 -07:00
parent 13f7257dd7
commit 5e604b7a18
44 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package resources
func File(name string) ([]byte, bool) {
data, ok := go_bindata[name]
if ok == false {
return nil, false
}
return data(), true
}