mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-10 22:58:08 -05:00
12 lines
398 B
Solidity
12 lines
398 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.18;
|
|
|
|
import {ILensModule} from 'contracts/modules/interfaces/ILensModule.sol';
|
|
|
|
abstract contract LensModule is ILensModule {
|
|
/// @inheritdoc ILensModule
|
|
function supportsInterface(bytes4 interfaceID) public pure virtual override returns (bool) {
|
|
return interfaceID == bytes4(keccak256(abi.encodePacked('LENS_MODULE')));
|
|
}
|
|
}
|