road-master/showroom-podcast

View on GitHub
showroompodcast/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
"""Top-level package for SHOWROOM Podcast."""

from typing import List

from showroompodcast.config import Config

__author__ = """Master"""
__email__ = "roadmasternavi@gmail.com"
__version__ = "20220205125000"

__all__: List[str] = []

CONFIG: Config = Config()