mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-19 09:51:55 +08:00
10 lines
121 B
Go
10 lines
121 B
Go
package huaweicloudsdk
|
|
|
|
func Int32Ptr(i int32) *int32 {
|
|
return &i
|
|
}
|
|
|
|
func StringPtr(s string) *string {
|
|
return &s
|
|
}
|