aplus/main.go

21 lines
260 B
Go
Raw Normal View History

2023-10-27 19:02:38 -04:00
package main
import (
"net/http"
)
var base_link string
2023-11-14 18:04:29 -05:00
var base_aplus_link string
var token string
var external_tools_code int
var client http.Client
2023-10-27 19:02:38 -04:00
func main() {
initialize()
2023-11-04 01:55:30 -04:00
2023-11-14 18:04:29 -05:00
course_code := 7326
submit_code(course_code, "A1B2C")
2023-10-30 17:58:38 -04:00
// enter_code()
2023-11-04 01:55:30 -04:00
}