Files
ai-agent-admin/backend-fastapi/core/post/__init__.py
T
2026-06-08 18:14:59 +08:00

11 lines
240 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Post Module - 岗位管理模块
"""
from core.post.model import Post
from core.post.service import PostService
from core.post.api import router
__all__ = ["Post", "PostService", "router"]