1package echo
2
3/*
4 * This realm echoes the `path` argument it received.
5 * Can be used by developers as a simple endpoint to test
6 * forbidden characters, for pentesting or simply to
7 * test it works.
8 *
9 * See also r/demo/print (to print various thing like user address)
10 */
11func Render(path string) string {
12 return path
13}
echo.gno
0.32 Kb ยท 13 lines