mastodon-ld/masto_ld/templates/__init__.py

8 lines
174 B
Python

from pydantic import BaseModel
class WikiPage(BaseModel):
"""
A wiki page that should be just straight up added to the wiki as is
"""
name: str
body: str