Skip to content

Commit

Permalink
Create api sub-package skeleton with blank config
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Jun 15, 2021
1 parent 5d09a1d commit 90abd36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/webqueue2api/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Configuration
from .config import config
11 changes: 11 additions & 0 deletions src/webqueue2api/api/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Stores API configuartion data."""
from dataclasses import dataclass

@dataclass
class Configuraton:
pass


config = Configuraton(

)

0 comments on commit 90abd36

Please sign in to comment.