You've already forked mpbot-github
mirror of
https://github.com/macports/mpbot-github.git
synced 2026-07-13 03:18:39 -07:00
10 lines
106 B
Go
10 lines
106 B
Go
package webhook
|
|
|
|
func ptrOfStr(s string) *string {
|
|
return &s
|
|
}
|
|
|
|
func ptrOfInt(s int) *int {
|
|
return &s
|
|
}
|