github.com/alloyzeus/go-azfl@v0.0.0-20231220071816-9740126a2d07/azid/azid.go (about)

     1  // Package azid defines the encodings of entity identifiers and reference keys
     2  // within AZ.
     3  //
     4  // There are two formats defined here: textual (azid-text) and
     5  // binary (azid-bin).
     6  package azid
     7  
     8  // Error abstracts all errors emitted by this package.
     9  type Error interface {
    10  	error
    11  }