You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.go
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -39,13 +39,15 @@ func main() {
39
39
// Flag for soc scraping
40
40
scrapeOrganizations:=flag.Bool("organizations", false, "Alongside -scrape, signifies that SOC organizations should be scraped.")
41
41
// Flag for calendar scraping and parsing
42
-
calendar:=flag.Bool("calendar", false, "Alongside -scrape or -parse, signifies that calendar should be scraped.")
42
+
cometCalendar:=flag.Bool("cometCalendar", false, "Alongside -scrape or -parse, signifies that the Comet Calendar should be scraped/parsed.")
43
43
// Flag for astra scraping and parsing
44
44
astra:=flag.Bool("astra", false, "Alongside -scrape or -parse, signifies that Astra should be scraped/parsed.")
45
45
// Flag for mazevo scraping and parsing
46
46
mazevo:=flag.Bool("mazevo", false, "Alongside -scrape or -parse, signifies that Mazevo should be scraped/parsed.")
47
47
// Flag for map scraping, parsing, and uploading
48
48
mapFlag:=flag.Bool("map", false, "Alongside -scrape, -parse, or -upload, signifies that the UTD map should be scraped/parsed/uploaded.")
49
+
// Flag for academic calendar scraping
50
+
academicCalendars:=flag.Bool("academicCalendars", false, "Alongside -scrape, -parse, or -upload, signifies that the academic calendars should be scraped/parsed/uploaded.")
49
51
50
52
// Flags for parsing
51
53
parse:=flag.Bool("parse", false, "Puts the tool into parsing mode.")
@@ -56,7 +58,7 @@ func main() {
56
58
upload:=flag.Bool("upload", false, "Puts the tool into upload mode.")
57
59
replace:=flag.Bool("replace", false, "Alongside -upload, specifies that uploaded data should replace existing data rather than being merged.")
58
60
staticOnly:=flag.Bool("static", false, "Alongside -upload, specifies that we should only build and upload the static aggregations.")
59
-
events:=flag.Bool("events", false, "Alongside -upload, signifies that Astraand Mazevo should be uploaded.")
61
+
events:=flag.Bool("events", false, "Alongside -upload, signifies that Astra, Mazevo, and the Comet Calendar should be uploaded.")
60
62
61
63
// Flags for logging
62
64
verbose:=flag.Bool("verbose", false, "Enables verbose logging, good for debugging purposes.")
0 commit comments