This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
package proxy
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
// toString Generic to string function, currently supports actual strings and integers
|
|
func toString(in interface{}) string {
|
|
switch v := in.(type) {
|
|
case string:
|
|
return v
|
|
case *string:
|
|
return *v
|
|
case int:
|
|
return strconv.Itoa(v)
|
|
}
|
|
return ""
|
|
}
|