yesod-mirror/third_party/force_go_deps.go

18 lines
538 B
Go
Raw Permalink Normal View History

// Package main contains dummy imports to force certain dependencies to be direct in go.mod.
// This is necessary for Bazel's go_deps extension to correctly pick them up.
package main
import (
_ "github.com/amikos-tech/chroma-go"
_ "github.com/gofrs/flock"
_ "github.com/google/uuid"
_ "github.com/gorilla/mux"
_ "github.com/gorilla/websocket"
_ "github.com/mholt/archiver/v3"
_ "github.com/stretchr/testify"
//_ "github.com/steveyegge/gastown/internal/beads"
_ "google.golang.org/api"
_ "nhooyr.io/websocket"
)
func main() {}