modulepackage
0.0.8
Repository: https://github.com/codeunic/golang-framework.git
Documentation: pkg.go.dev
# README
go-library
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewTable users := orm.NewTable(db, "users")
// Create data := map[string]interface{}{ "name": "John Doe", "age": 30, } result, err := users.Create(data) if err != nil { log.Fatal(err) }
// Read rows, err := users.Read("age > ?", 18) if err != nil { log.Fatal(err) } // Process rows here..
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author