1
1
mirror of https://git.sr.ht/~emersion/tlstunnel synced 2024-09-22 01:01:30 +02:00
tlstunnel/main.go

14 lines
172 B
Go
Raw Normal View History

2020-09-08 12:11:32 +02:00
package main
import (
"log"
)
func main() {
directives, err := Load("config")
if err != nil {
log.Fatalf("failed to load config file: %v", err)
}
_ = directives
}