// Statup // Copyright (C) 2018. Hunter Long and the project contributors // Written by Hunter Long and the project contributors // // https://github.com/hunterlong/statup // // The licenses for most software and other practical works are designed // to take away your freedom to share and change the works. By contrast, // the GNU General Public License is intended to guarantee your freedom to // share and change all versions of a program--to make sure it remains free // software for all its users. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . package plugin import ( "github.com/jinzhu/gorm" "net/http" ) // // STATUP PLUGIN INTERFACE // // v0.1 // // https://statup.io // // // An expandable plugin framework that will still // work even if there's an update or addition. // var ( DB *gorm.DB ) type Routing struct { URL string Method string Handler func(http.ResponseWriter, *http.Request) } type Info struct { Name string Description string Form string } type Database *gorm.DB type Plugin struct { Name string Description string } type PluginDatabase interface { Database(gorm.DB) Update() error } type PluginInfo struct { i *Info } func SetDatabase(database *gorm.DB) { DB = database } func (p *PluginInfo) Form() string { return "okkokokkok" }