Switch from logrus to zerolog, move types into types.go

This commit is contained in:
2023-12-24 15:47:11 -06:00
parent 40330c37ce
commit 4dce1de842
7 changed files with 95 additions and 96 deletions

30
types.go Normal file
View File

@@ -0,0 +1,30 @@
package main
import "time"
type MeetingTimeFaculty struct {
bannerId int
category string
displayName string
email string
primary bool
}
type MeetingTimeResponse struct {
faculty []MeetingTimeFaculty
weekdays map[time.Weekday]bool
campus string
campusDescription string
creditHours int
building string
buildingDescription string
room string
timeStart NaiveTime
timeEnd NaiveTime
dateStart time.Time
dateEnd time.Time
hoursPerWeek float32
meetingScheduleType string
meetingType string
meetingTypeDescription string
}