oko-server/server/utils.go
zegkljan 38318ca654 basic server
* basic untested implementation of server
* updating data not implemented yet
2022-01-28 00:29:06 +01:00

10 lines
104 B
Go

package server
func ptrInt(x int) *int {
return &x
}
func ptrString(x string) *string {
return &x
}