Add more sample content

This commit is contained in:
Ashwin Bharambe 2024-09-22 16:56:30 -07:00
parent 6cbc387851
commit ef042e1605
21 changed files with 198 additions and 1 deletions

View file

@ -3,3 +3,10 @@
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from pydantic import BaseModel
class SampleConfig(BaseModel):
host: str = "localhost"
port: int = 9999