mirror of
https://github.com/Luzifer/korvike.git
synced 2024-11-08 15:30:05 +00:00
8 lines
101 B
Go
8 lines
101 B
Go
|
package functions
|
||
|
|
||
|
import "net/url"
|
||
|
|
||
|
func init() {
|
||
|
registerFunction("urlescape", url.QueryEscape)
|
||
|
}
|