sourcegraph/schema/stringdata.go
Quinn Slack c9439d9456
OpenCodeGraph prototype (#58675)
This adds support for the OpenCodeGraph prototype. Feature-flagged off by default behind the `opencodegraph` feature flag. See https://www.loom.com/share/5549d92a7c244863ac86ce56692ca030 for more information.

Also, for our CodeMirror, remove `background:transparent` so that line bg applies to block widgets
2023-12-06 21:39:33 -08:00

117 lines
3.3 KiB
Go

package schema
import _ "embed"
// AWSCodeCommitSchemaJSON is the content of the file "aws_codecommit.schema.json".
//
//go:embed aws_codecommit.schema.json
var AWSCodeCommitSchemaJSON string
// AzureDevOpsSchemaJSON is the content of the file "azuredevops.schema.json".
//
//go:embed azuredevops.schema.json
var AzureDevOpsSchemaJSON string
// BatchSpecSchemaJSON is the content of the file "batch_spec.schema.json".
//
//go:embed batch_spec.schema.json
var BatchSpecSchemaJSON string
// BitbucketCloudSchemaJSON is the content of the file "bitbucket_cloud.schema.json".
//
//go:embed bitbucket_cloud.schema.json
var BitbucketCloudSchemaJSON string
// BitbucketServerSchemaJSON is the content of the file "bitbucket_server.schema.json".
//
//go:embed bitbucket_server.schema.json
var BitbucketServerSchemaJSON string
// ChangesetSpecSchemaJSON is the content of the file "changeset_spec.schema.json".
//
//go:embed changeset_spec.schema.json
var ChangesetSpecSchemaJSON string
// GerritSchemaJSON is the content of the file "gerrit.schema.json".
//
//go:embed gerrit.schema.json
var GerritSchemaJSON string
// GitHubSchemaJSON is the content of the file "github.schema.json".
//
//go:embed github.schema.json
var GitHubSchemaJSON string
// GitLabSchemaJSON is the content of the file "gitlab.schema.json".
//
//go:embed gitlab.schema.json
var GitLabSchemaJSON string
// GitoliteSchemaJSON is the content of the file "gitolite.schema.json".
//
//go:embed gitolite.schema.json
var GitoliteSchemaJSON string
//go:embed go-modules.schema.json
var GoModulesSchemaJSON string
//go:embed jvm-packages.schema.json
var JVMPackagesSchemaJSON string
//go:embed npm-packages.schema.json
var NpmPackagesSchemaJSON string
//go:embed python-packages.schema.json
var PythonPackagesSchemaJSON string
//go:embed rust-packages.schema.json
var RustPackagesSchemaJSON string
//go:embed ruby-packages.schema.json
var RubyPackagesSchemaJSON string
// OtherExternalServiceSchemaJSON is the content of the file "other_external_service.schema.json".
//
//go:embed other_external_service.schema.json
var OtherExternalServiceSchemaJSON string
// LocalGitExternalServiceSchemaJSON is the content of the file "localgit.schema.json".
//
//go:embed localgit.schema.json
var LocalGitExternalServiceSchemaJSON string
// PerforceSchemaJSON is the content of the file "perforce.schema.json".
//
//go:embed perforce.schema.json
var PerforceSchemaJSON string
// PhabricatorSchemaJSON is the content of the file "phabricator.schema.json".
//
//go:embed phabricator.schema.json
var PhabricatorSchemaJSON string
// PagureSchemaJSON is the content of the file "pagure.schema.json".
//
//go:embed pagure.schema.json
var PagureSchemaJSON string
// SettingsSchemaJSON is the content of the file "settings.schema.json".
//
//go:embed settings.schema.json
var SettingsSchemaJSON string
// SiteSchemaJSON is the content of the file "site.schema.json".
//
//go:embed site.schema.json
var SiteSchemaJSON string
// OpenCodeGraphSchemaJSON is the content of the file "opencodegraph.schema.json".
//
//go:embed opencodegraph.schema.json
var OpenCodeGraphSchemaJSON string
// OpenCodeGraphProtocolSchemaJSON is the content of the file "opencodegraph-protocol.schema.json".
//
//go:embed opencodegraph-protocol.schema.json
var OpenCodeGraphProtocolSchemaJSON string