mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-09 14:00:15 -04:00
* Implemented API routes for getting all, creating, updating, and deleting resources, services, and tags. * Updated main.py for API routes to include tags and rolled entities back. * Created API routes for create, update, delete, get_all, and get_by_name. Deleted service methods for get by id. * Defaults created_at to current time * Write markdown file for HTTP requests using curl --------- Co-authored-by: pmoharana-cmd <pmoharana032474@gmail.com>
16 lines
574 B
Python
16 lines
574 B
Python
from pydantic import BaseModel, Field
|
|
from enum import Enum
|
|
from typing import List
|
|
from datetime import datetime
|
|
from typing import Optional
|
|
from .enum_for_models import ProgramTypeEnum
|
|
|
|
|
|
class Resource(BaseModel):
|
|
id: int | None = None
|
|
name: str = Field(..., max_length=150, description="The name of the resource")
|
|
summary: str = Field(..., max_length=300, description="The summary of the resource")
|
|
link: str = Field(..., max_length=150, description="link to the resource")
|
|
program: ProgramTypeEnum
|
|
created_at: Optional[datetime] = datetime.now()
|