14 lines
229 B
Go
14 lines
229 B
Go
package view_handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func CreateSession(c echo.Context) error {
|
|
return c.Render(http.StatusOK, "create_session", map[string]interface{}{
|
|
"name": "create session",
|
|
})
|
|
}
|