Some checks failed
CI / build (push) Failing after 12s
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
18 lines
No EOL
538 B
Go
18 lines
No EOL
538 B
Go
// 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() {} |