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