11 lines
206 B
Python
11 lines
206 B
Python
# Copyright (c) 2025, JINGROW
|
|
# License: MIT. See LICENSE
|
|
|
|
from typing import Any
|
|
|
|
|
|
def load_pagetype_module(pagetype: str, module: str | None = None, prefix: str = "", suffix: str = "") -> Any:
|
|
pass
|
|
|
|
|