9 lines
134 B
Python
9 lines
134 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import annotations
|
|
|
|
from .base import BaseSecrets
|
|
|
|
|
|
class AdminSecrets(BaseSecrets):
|
|
pass
|