mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
* Use vendor code for all go calls * Add missing vendor dependencies * Add travis_retry to yarn install * Fix go test call
11 lines
339 B
Go
11 lines
339 B
Go
package cmd
|
|
|
|
import (
|
|
// Import and ignore the ambient imports listed below so dependency managers
|
|
// don't prune unused code for us. Both lists should be kept in sync.
|
|
_ "github.com/99designs/gqlgen/graphql"
|
|
_ "github.com/99designs/gqlgen/graphql/introspection"
|
|
_ "github.com/vektah/gqlparser"
|
|
_ "github.com/vektah/gqlparser/ast"
|
|
)
|