Introduce code for ES2+ API client functionality

Change-Id: Id652bb4c2df8893a824b8bb44beeafdfbb91de3f
This commit is contained in:
Harald Welte
2024-02-06 19:42:19 +01:00
parent e1c0b626d8
commit 95873a964e
4 changed files with 540 additions and 2 deletions

View File

@@ -2,10 +2,10 @@ import sys
from typing import Optional
from importlib import resources
import asn1tools
def compile_asn1_subdir(subdir_name:str):
"""Helper function that compiles ASN.1 syntax from all files within given subdir"""
import asn1tools
asn_txt = ''
__ver = sys.version_info
if (__ver.major, __ver.minor) >= (3, 9):