github.com/holochain/holochain-proto@v0.1.0-alpha-26.0.20200915073418-5c83169c9b5b/entry_key.go (about)

     1  package holochain
     2  
     3  const (
     4    // virtual entry type, not actually on the chain
     5    KeyEntryType = VirtualEntryTypePrefix + "key"
     6  
     7    DataFormatSysKey  = "_key"
     8  )
     9  
    10  var KeyEntryDef = &EntryDef{Name: KeyEntryType, DataFormat: DataFormatSysKey}