summaryrefslogtreecommitdiff
path: root/main.go
blob: 71db90bad9c8b209d7af27e4231a3c4e78ae4037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()
}