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