mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-09 03:09:12 -06:00
14 lines
325 B
Go
14 lines
325 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/"
|
|
HasRefsPath = "/hasRefs/"
|
|
WriteValuePath = "/writeValue/"
|
|
BasePath = "/"
|
|
)
|