Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CRUD ¶
type CRUD interface { Exists() (bool, error) Create() (*SqlIdentifyable, int, error) Read() (*SqlIdentifyable, int, error) Update() (*SqlIdentifyable, int, error) Delete() (*SqlIdentifyable, int, error) }
CRUD defines the interface to the database of a CRUD resource
type InfluxIdentifyable ¶
type InfluxIdentifyable struct { }
func NewInfluxIdentifyable ¶
func NewInfluxIdentifyable() *InfluxIdentifyable
type SqlIdentifyable ¶
type SqlIdentifyable struct {
Id *string `json:"id"`
}
SqlIdentifyable defines the minimum CRUD resource
func NewSqlIdentifyable ¶
func NewSqlIdentifyable(id *string) *SqlIdentifyable
Click to show internal directories.
Click to hide internal directories.