mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
19 lines
376 B
Python
19 lines
376 B
Python
|
import osc.commandline
|
||
|
|
||
|
|
||
|
class RequestCommand(osc.commandline.OscCommand):
|
||
|
"""
|
||
|
Manage requests
|
||
|
"""
|
||
|
|
||
|
name = "request"
|
||
|
aliases = ["rq"]
|
||
|
|
||
|
# arguments specified here will get inherited to all subcommands automatically
|
||
|
def init_arguments(self):
|
||
|
self.add_argument(
|
||
|
"-m",
|
||
|
"--message",
|
||
|
metavar="TEXT",
|
||
|
)
|