Mercurial > libervia-backend
comparison sat_frontends/jp/cmd_input.py @ 4071:4b842c1fb686
refactoring: renamed `sat` package to `libervia.backend`
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 02 Jun 2023 11:49:51 +0200 |
parents | 524856bd7b19 |
children |
comparison
equal
deleted
inserted
replaced
4070:d10748475025 | 4071:4b842c1fb686 |
---|---|
22 import argparse | 22 import argparse |
23 import sys | 23 import sys |
24 import shlex | 24 import shlex |
25 import asyncio | 25 import asyncio |
26 from . import base | 26 from . import base |
27 from sat.core.i18n import _ | 27 from libervia.backend.core.i18n import _ |
28 from sat.core import exceptions | 28 from libervia.backend.core import exceptions |
29 from sat_frontends.jp.constants import Const as C | 29 from sat_frontends.jp.constants import Const as C |
30 from sat.tools.common.ansi import ANSI as A | 30 from libervia.backend.tools.common.ansi import ANSI as A |
31 | 31 |
32 __commands__ = ["Input"] | 32 __commands__ = ["Input"] |
33 OPT_STDIN = "stdin" | 33 OPT_STDIN = "stdin" |
34 OPT_SHORT = "short" | 34 OPT_SHORT = "short" |
35 OPT_LONG = "long" | 35 OPT_LONG = "long" |