summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2020-07-01 12:33:32 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-07-01 12:34:46 +0200
commit14b7729a717a7e079cf66fe5c4f579f7355c0b5e (patch)
treebc6d57b18c8eb9463d410f00cc8c2d1e5f25e38f
parentdbf0f00650200b8b4817274953f2e0b684bd622d (diff)
add license header to source code files
-rw-r--r--cli/cli.py8
-rw-r--r--cli/objects/client.py8
-rw-r--r--cli/objects/modes.py8
-rw-r--r--cli/objects/scopes.py8
-rwxr-xr-xogcli8
5 files changed, 40 insertions, 0 deletions
diff --git a/cli/cli.py b/cli/cli.py
index 30c1bb6..2b80c95 100644
--- a/cli/cli.py
+++ b/cli/cli.py
@@ -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
diff --git a/cli/objects/client.py b/cli/objects/client.py
index ca91036..6ae1867 100644
--- a/cli/objects/client.py
+++ b/cli/objects/client.py
@@ -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
diff --git a/cli/objects/modes.py b/cli/objects/modes.py
index bf175d6..04e281d 100644
--- a/cli/objects/modes.py
+++ b/cli/objects/modes.py
@@ -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
diff --git a/cli/objects/scopes.py b/cli/objects/scopes.py
index 0bf3ca8..7f4cd7d 100644
--- a/cli/objects/scopes.py
+++ b/cli/objects/scopes.py
@@ -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
diff --git a/ogcli b/ogcli
index 33d740a..b284419 100755
--- a/ogcli
+++ b/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