Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AllowedDBDrivers = []string{string(MySql), string(Postgres), string(Sqlite), string(Mongo), string(None)}
View Source
var AllowedProjectTypes = []string{string(Chi), string(Gin), string(Fiber), string(GorillaMux), string(HttpRouter), string(StandardLibrary), string(Echo)}
Functions ¶
This section is empty.
Types ¶
type Database ¶
type Database string
const ( MySql Database = "mysql" Postgres Database = "postgres" Sqlite Database = "sqlite" Mongo Database = "mongo" None Database = "none" )
These are all the current databases supported. If you want to add one, you can simply copy and past a line here. Do not forget to also add it into the AllowedDBDrivers slice too!
type Framework ¶
type Framework string
const ( Chi Framework = "chi" Gin Framework = "gin" Fiber Framework = "fiber" GorillaMux Framework = "gorilla/mux" HttpRouter Framework = "httprouter" StandardLibrary Framework = "standard-library" Echo Framework = "echo" )
These are all the current frameworks supported. If you want to add one, you can simply copy and past a line here. Do not forget to also add it into the AllowedProjectTypes slice too!
Click to show internal directories.
Click to hide internal directories.