mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-22 10:12:12 +01:00
16 lines
253 B
Python
16 lines
253 B
Python
import osc.commandline_git
|
|
|
|
|
|
class SSHKeyCommand(osc.commandline_git.GitObsCommand):
|
|
"""
|
|
Manage public SSH keys
|
|
"""
|
|
|
|
name = "ssh-key"
|
|
|
|
def init_arguments(self):
|
|
pass
|
|
|
|
def run(self, args):
|
|
self.parser.print_help()
|