1
1
mirror of https://git.sr.ht/~emersion/tlstunnel synced 2024-09-21 20:51:42 +02:00
tlstunnel/main.go
2020-09-08 12:11:32 +02:00

14 lines
172 B
Go

package main
import (
"log"
)
func main() {
directives, err := Load("config")
if err != nil {
log.Fatalf("failed to load config file: %v", err)
}
_ = directives
}