summaryrefslogtreecommitdiff
path: root/main.go
blob: 8f669e12bfa4ad8895234fd11f9ac1cb5a354b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package main

import (
	"net/http"
)

var base_link string
var token string
var client http.Client

func main() {
	initialize()

	// select_course()
	course_code := 7329
	launch_aplus(course_code)

	// enter_code()
}