mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-31 01:55:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			237 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			237 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package controllers
 | |
| 
 | |
| import (
 | |
| 	"github.com/Theodor-Springmann-Stiftung/kgpz_web/app"
 | |
| 	"github.com/gofiber/fiber/v2"
 | |
| )
 | |
| 
 | |
| func GetPlace(kgpz *app.KGPZ) fiber.Handler {
 | |
| 	return func(c *fiber.Ctx) error {
 | |
| 		return c.Render("/ort/", nil)
 | |
| 	}
 | |
| }
 | 
