Just a simple site to publish surveys. Nothing fancy, mostly done because I need it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
321 B

package features
import (
"github.com/gofiber/fiber/v2"
"MY/webapp/features/email"
"MY/webapp/features/admin"
"MY/webapp/features/auth"
"MY/webapp/features/survey"
)
func Setup(app *fiber.App) {
features_auth.Setup(app)
features_admin.Setup(app)
features_email.Setup(app)
features_survey.Setup(app)
}