17 lines
343 B
Go
17 lines
343 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"inou/lib"
|
|
)
|
|
|
|
func main() {
|
|
lib.Init()
|
|
d, _ := lib.DossierGet(nil, "1111111111111111") // nil ctx - admin tool
|
|
d.Name = "Jane Doe"
|
|
d.DateOfBirth = "2020-07-04"
|
|
d.Sex = 2 // Female
|
|
lib.DossierWrite(nil, d) // nil ctx - admin tool
|
|
fmt.Println("Fixed Jane Doe - DOB: 2020-07-04 (5 years old at MRI scan)")
|
|
}
|