Files
dolt/go/constants/http.go
Rafael Weinstein fff532beb3 Add experimental graphql support (#3146)
Included README.md describes initial features.

This patch includes a simple graphiql ui which is preconfigured to explore a noms/graphql endpoint
2017-02-06 19:28:54 -08:00

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/"
)