Merge branch 'zdy'

This commit is contained in:
David Chang
2023-12-26 16:56:37 +08:00
6 changed files with 134 additions and 6 deletions

View File

@@ -1 +1,2 @@
from .file import get_cloud_file, get_vm_file
from .misc import get_rule

View File

@@ -0,0 +1,8 @@
from typing import TypeVar
R = TypeVar("Rule")
def get_rule(env, config: R) -> R:
"""
Returns the rule as-is.
"""
return config