12 lines
240 B
Python
12 lines
240 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.parsing.constructs.linked import Parsed
|
|
from bu4.parsing.parser import Parser
|
|
|
|
|
|
__all__ = ('parse',)
|
|
|
|
|
|
def parse(source: bytes) -> Parsed:
|
|
return Parser(source).parse()
|