mirror of
https://github.com/containous/traefik.git
synced 2025-01-22 22:03:51 +03:00
7 lines
112 B
Go
7 lines
112 B
Go
|
package testhelpers
|
||
|
|
||
|
// Intp returns a pointer to the given integer value.
|
||
|
func Intp(i int) *int {
|
||
|
return &i
|
||
|
}
|