add license header to source code files

master
OpenGnSys Support Team 2020-07-01 12:33:32 +02:00
parent dbf0f00650
commit 14b7729a71
5 changed files with 40 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
View File

@ -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