735546619e
Signed-off-by: T-Hax <>
12 lines
238 B
Solidity
12 lines
238 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
import "../introspection/ERC165.sol";
|
|
|
|
contract ERC165Mock is ERC165 {
|
|
function registerInterface(bytes4 interfaceId) public {
|
|
_registerInterface(interfaceId);
|
|
}
|
|
}
|