15 lines
323 B
JavaScript
15 lines
323 B
JavaScript
/*!
|
|
* covenants/index.js - covenants for hsd
|
|
* Copyright (c) 2019, handshake-org developers (MIT License).
|
|
* https://github.com/handshake-org/hsd
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* @module covenants
|
|
*/
|
|
|
|
exports.Namestate = require('./namestate');
|
|
exports.Ownership = require('./ownership');
|
|
exports.Rules = require('./rules');
|