This repository has been archived on 2024-10-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
swb6-it-sec/Lab01/app/main.go

8 lines
97 B
Go

package main
import "app/webpage"
func main() {
backend := webpage.Webpage{}
backend.Run()
}