This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
swb6-it-sec/Lab01/app/main.go

9 lines
97 B
Go
Raw Normal View History

2022-03-30 12:39:04 +02:00
package main
2022-03-30 14:54:01 +02:00
import "app/webpage"
2022-03-30 12:39:04 +02:00
func main() {
2022-03-30 14:54:01 +02:00
backend := webpage.Webpage{}
2022-03-30 12:39:04 +02:00
backend.Run()
}