github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/demo/echo/echo.gno (about)

     1  package 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   */
    11  func Render(path string) string {
    12  	return path
    13  }