You've already forked mpbot-github
mirror of
https://github.com/macports/mpbot-github.git
synced 2026-03-31 14:46:03 -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
|
|
}
|