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.
 
 
 
 
 

17 lines
328 B

package features_survey
import (
"MY/webapp/data"
// _ "github.com/mattn/go-sqlite3"
// sq "github.com/Masterminds/squirrel"
)
func QueryData() data.Survey {
return data.Survey{
Title: "Sample Survey",
Description: "The description.",
CreatedOn: "01/20/26",
Respondents: 200,
Active: false,
}
}