14 lines
468 B
Solidity
14 lines
468 B
Solidity
pragma solidity >=0.6.12;
|
|
|
|
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
// File-version: 4
|
|
|
|
interface ILocator {
|
|
// URI that may or may not point to a specific resource location.
|
|
function toURI(bytes memory _data) external view returns (string memory);
|
|
|
|
// URL pointing to a specific resource location.
|
|
function toURL(bytes memory _data) external view returns(string memory);
|
|
}
|