mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-22 18:22:12 +01:00
16 lines
242 B
Python
16 lines
242 B
Python
import osc.commandline_git
|
|
|
|
|
|
class RepoCommand(osc.commandline_git.GitObsCommand):
|
|
"""
|
|
Manage git repos
|
|
"""
|
|
|
|
name = "repo"
|
|
|
|
def init_arguments(self):
|
|
pass
|
|
|
|
def run(self, args):
|
|
self.parser.print_help()
|