mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-28 14:05:25 +02:00
16 lines
325 B
Python
16 lines
325 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
import abc
|
||
|
|
from argparse import Namespace
|
||
|
|
|
||
|
|
from .Backend import Backend as Base
|
||
|
|
from ..CmdDup import CmdDup as Parent
|
||
|
|
|
||
|
|
class BeDup(Base):
|
||
|
|
|
||
|
|
def __init__(self, parent: Parent):
|
||
|
|
super().__init__(parent)
|
||
|
|
|
||
|
|
@abc.abstractmethod
|
||
|
|
async def run(self, args: Namespace) -> None:
|
||
|
|
pass
|