mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 18:49:14 -06:00
Included README.md describes initial features. This patch includes a simple graphiql ui which is preconfigured to explore a noms/graphql endpoint
17 lines
383 B
Go
17 lines
383 B
Go
// Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
// Licensed under the Apache License, version 2.0:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
package constants
|
|
|
|
const (
|
|
RootPath = "/root/"
|
|
GetRefsPath = "/getRefs/"
|
|
GetBlobPath = "/getBlob/"
|
|
HasRefsPath = "/hasRefs/"
|
|
WriteValuePath = "/writeValue/"
|
|
BasePath = "/"
|
|
|
|
GraphQLPath = "/graphql/"
|
|
)
|