Files
old-reklame-agent/cmd/telal/telal.go

9 lines
164 B
Go
Raw Normal View History

2023-03-02 07:24:12 +01:00
package main
2023-03-04 11:45:53 +01:00
import "reklame-agent/internal/app/telal"
2023-03-02 07:24:12 +01:00
// create a main function that calls ServeAds from the telal package
func main() {
2023-03-04 11:45:53 +01:00
telal.ServeBanners()
2023-03-02 07:24:12 +01:00
}