12 lines
294 B
Python
12 lines
294 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.linking.states.linkingstate import LinkingState
|
|
from bu4.linking.constructs.linked import Linked
|
|
|
|
__all__ = ('ALTarget',)
|
|
|
|
|
|
class ALTarget:
|
|
def given(self, linked: Linked) -> LinkingState:
|
|
raise NotImplementedError
|