fix: various lintings, simple improvements

This commit is contained in:
2025-08-25 23:41:43 -05:00
parent 2bf0e72e2e
commit 7edd1f16bf
4 changed files with 37 additions and 36 deletions

View File

@@ -95,11 +95,13 @@ func (q *Query) TermPart(termPart []string) *Query {
return q
}
// Campus sets the campuses for the query
func (q *Query) Campus(campus []string) *Query {
q.campus = &campus
return q
}
// InstructionalMethod sets the instructional methods for the query
func (q *Query) InstructionalMethod(instructionalMethod []string) *Query {
q.instructionalMethod = &instructionalMethod
return q