mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
* Add gql client generation files * Update dependencies * Add stash-box client generation to the makefile * Move scraped scene object matchers to models * Add stash-box to scrape with dropdown * Add scrape scene from fingerprint in UI
18 lines
276 B
Go
18 lines
276 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/99designs/gqlgen/graphql"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var versionCmd = &cli.Command{
|
|
Name: "version",
|
|
Usage: "print the version string",
|
|
Action: func(ctx *cli.Context) error {
|
|
fmt.Println(graphql.Version)
|
|
return nil
|
|
},
|
|
}
|