mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
Daniel Mach
26a8fb1acf
This is based on a prototype we've worked on together with Laurin Fäller <laurin.faeller@suse.com>.
14 lines
222 B
Python
14 lines
222 B
Python
import osc.commandline
|
|
|
|
|
|
class RequestListCommand(osc.commandline.OscCommand):
|
|
"""
|
|
List requests
|
|
"""
|
|
|
|
name = "list"
|
|
parent = "RequestCommand"
|
|
|
|
def run(self, args):
|
|
print("Listing requests")
|