mirror of https://git.48k.eu/ogcli/
add license header to source code files
parent
dbf0f00650
commit
14b7729a71
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU Affero General Public License as published by the
|
||||
# Free Software Foundation, version 3.
|
||||
#
|
||||
|
||||
from cli.objects.client import OgClient
|
||||
from cli.objects.scopes import OgScope
|
||||
from cli.objects.modes import OgModes
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU Affero General Public License as published by the
|
||||
# Free Software Foundation, version 3.
|
||||
#
|
||||
|
||||
class OgClient():
|
||||
|
||||
@staticmethod
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU Affero General Public License as published by the
|
||||
# Free Software Foundation, version 3.
|
||||
#
|
||||
|
||||
class OgModes():
|
||||
|
||||
@staticmethod
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU Affero General Public License as published by the
|
||||
# Free Software Foundation, version 3.
|
||||
#
|
||||
|
||||
class OgScope():
|
||||
|
||||
@staticmethod
|
||||
|
|
8
ogcli
8
ogcli
|
@ -1,5 +1,13 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
#
|
||||
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU Affero General Public License as published by the
|
||||
# Free Software Foundation, version 3.
|
||||
#
|
||||
|
||||
from cli.cli import OgCLI
|
||||
import argparse
|
||||
import json
|
||||
|
|
Loading…
Reference in New Issue