mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 19:26:33 +00:00
10 lines
184 B
Solidity
10 lines
184 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../patched/access/Ownable.sol";
|
|
|
|
contract OwnableHarness is Ownable {
|
|
function restricted() external onlyOwner {}
|
|
}
|