mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:31:54 +00:00
Cody no longer needs it and it is obsolete now! Since App added a non-insignificant amount of new concepts and alternative code paths, I decided to take some time and remove it from out codebase. This PR removes ~21k lines of code. If we ever want parts of single binary (app), the redis kv alternatives, or the release pipeline for a native mac app back, we can look back at this PR and revert parts of it, but maintaining 21k lines of code and many code paths for which I had to delete a surprisingly small amount of tests justifies this move for me very well. Technically, to some extent SG App and Cody App both still existed in the codebase, but we don't distribute either of them anymore, so IMO we shouldn't keep this weight in our code. So.. here we go. This should not affect any of the existing deployments, we only remove functionality that was special-cased for app.
112 lines
3.1 KiB
Go
112 lines
3.1 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
|
|
|
|
// 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
|