summaryrefslogtreecommitdiff
path: root/spec/fixtures/go/main.go
blob: c6ebe78cbb325c5d85f01b37fb7fa1cd25522eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"fmt"
	_ "github.com/dimfeld/httptreemux/v5"
	_ "github.com/go-logfmt/logfmt"
	_ "github.com/google/uuid"
	_ "github.com/stretchr/testify"
	_ "golang.org/x/oauth2"
)

func main() {
	fmt.Println("Hello, World!")
}