aplus/main.go
vin 7b613b030d add rudimentary messy function for submitting aplus code
It is very messy, but later using golang's HTML parser should help make it more
readable.
2023-11-14 12:05:20 -05:00

21 lines
254 B
Go

package main
import (
"net/http"
)
var base_link string
var token string
var external_tools_code int
var client http.Client
func main() {
initialize()
// select_course()
course_code := 7329
launch_aplus(course_code, "A1B2C")
// enter_code()
}