feat: closes #18 added the code to generate models and other
This commit is contained in:
17
logic/models/utils/utils.go
Normal file
17
logic/models/utils/utils.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package models_utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
|
||||
)
|
||||
|
||||
// TODO make this return and caller handle error
|
||||
func ModelUpdateStatus(handle *Handle, id string, status int) {
|
||||
_, err := handle.Db.Exec("update models set status = $1 where id = $2", status, id)
|
||||
if err != nil {
|
||||
fmt.Println("Failed to update model status")
|
||||
fmt.Println(err)
|
||||
panic("TODO handle better")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user