summaryrefslogtreecommitdiff
path: root/main.go
blob: 6e4205e742ebc82402aa86bb744164253fcf55f6 (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 base_aplus_link string
var token string
var external_tools_code int
var client http.Client

func main() {
	initialize()

	course_code := 7326
	submit_code(course_code, "A1B2C")

	// enter_code()
}