package
Version:
v0.0.0-...-7607688
Opens a new window with list of versions in this module.
Published: May 14, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 11
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Db interface {
GetTables() ([]*Table, error)
}
type Field struct {
Name string `json:"name"`
Type string `json:"type"`
Desc string `json:"desc"`
}
type Mysql struct {
*gorm.DB
}
type Table struct {
Name string `json:"name"`
Desc string `json:"desc"`
Fields []*Field `json:"fields"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.