mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
8 lines
183 B
Solidity
8 lines
183 B
Solidity
pragma solidity 0.8.15;
|
|
|
|
import {DataTypes} from '../libraries/DataTypes.sol';
|
|
|
|
interface ILensMultiState {
|
|
function getState() external view returns (DataTypes.ProtocolState);
|
|
}
|