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