mirror of
https://github.com/Cernobor/oko-server.git
synced 2025-02-24 08:27:17 +00:00
10 lines
104 B
Go
10 lines
104 B
Go
package server
|
|
|
|
func ptrInt(x int) *int {
|
|
return &x
|
|
}
|
|
|
|
func ptrString(x string) *string {
|
|
return &x
|
|
}
|