mirror of
https://github.com/MeexReay/RAC-Hub.git
synced 2025-06-24 07:32:57 +03:00
29 lines
608 B
Python
29 lines
608 B
Python
#!/usr/bin/env python3
|
|
|
|
# from typing import Optional
|
|
# from enum import Enum
|
|
|
|
# class
|
|
|
|
# def read_template(name):
|
|
# return open(name.upper()+"_TEMPLATE.md", "r", encoding="utf8").read()
|
|
|
|
# SOFTWARE_TEMPLATE = read_template("software")
|
|
# HOST_TEMPLATE = read_template("host")
|
|
# README_TEMPLATE = read_template("readme")
|
|
|
|
|
|
|
|
# def software(
|
|
# name: str | (str, str),
|
|
# description: str,
|
|
# author: str,
|
|
# release: Optional[(str, str)],
|
|
# status: str,
|
|
# lang: str,
|
|
# rac_version: Optional[str],
|
|
# wrac_version: Optional[str],
|
|
# note: Optional[str]
|
|
# ):
|
|
# pass
|