First commit. adding some stuff.

This commit is contained in:
2020-04-03 22:40:51 +02:00
commit 7cef42c3cb
5 changed files with 121 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"context"
"ippserver/packages/mdnsserver"
)
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel() // cancel when we are finished consuming integers
mdnsserver.Run(ctx)
}