mirror of
https://codeberg.org/flpolyaplus/aplus.git
synced 2024-11-22 09:20:30 -05:00
21 lines
245 B
Go
21 lines
245 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)
|
|
|
|
// enter_code()
|
|
}
|