mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
14 lines
364 B
Go
14 lines
364 B
Go
package sync
|
|
|
|
import "github.com/rwinkhart/libmutton/core"
|
|
|
|
// define field separator constants
|
|
const (
|
|
FSSpace = "\u259d" // ▝ space/list separator
|
|
FSPath = "\u259e" // ▞ path separator
|
|
FSMisc = "\u259f" // ▟ misc. field separator (if \u259d is already used)
|
|
)
|
|
|
|
// rootLength stores length of core.EntryRoot string
|
|
var rootLength = len(core.EntryRoot)
|