Files
Scott Idem 0f8c5dc825 Documentation Archive: Retire static SQL snapshots and legacy logs
- Archived 'aether_sql_tables' and 'legacy_router_logs' to documentation/archive/.
- Static schema documentation is now superseded by the 'ae_obj_info' MCP tool and shared agents_sync metadata.
2026-01-28 12:33:20 -05:00

1.1 KiB

Router: post_comment

File: app/routers/post_comment.py

Routes found: 4

Functions: 0 —

Classes: 0 —

Routes

  • PATCH /{obj_id}

  • GET /list

  • GET /{obj_id}

  • DELETE /{obj_id}

From-imports

  • ..log

  • .api_crud

  • app.config

  • app.db_sql

  • app.lib_general

  • app.models.post_comment_models

  • app.models.response_models

  • fastapi

  • pydantic

  • typing

File preview (first 20 lines)


import datetime
#from datetime import datetime, time, timedelta
from fastapi import APIRouter, Body, Depends, Header, HTTPException, Path, Query, Response, status
from pydantic import BaseModel, EmailStr, Field
from typing import Dict, List, Optional, Set, Union

from app.lib_general import *
from ..log import *
from app.config import settings
from app.db_sql import *

from .api_crud import delete_obj_template, get_obj_template, get_obj_li_template, patch_obj_template, post_obj_template

from app.models.post_comment_models import Post_Comment_Base
from app.models.response_models import *


router = APIRouter()