mirror of
https://github.com/stronk-dev/RandomChad.git
synced 2025-07-05 18:35:10 +02:00
14 lines
224 B
Solidity
14 lines
224 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract Initializable {
|
|
bool inited = false;
|
|
|
|
modifier initializer() {
|
|
require(!inited, "already inited");
|
|
_;
|
|
inited = true;
|
|
}
|
|
}
|