mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-03 22:03:08 +00:00
14 lines
245 B
Solidity
14 lines
245 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.28;
|
|
|
|
import "./Periods.sol";
|
|
|
|
contract TestPeriods is Periods {
|
|
|
|
function initialize (
|
|
uint64 secondsPerPeriod
|
|
) public initializer {
|
|
_initializePeriods(secondsPerPeriod);
|
|
}
|
|
}
|