diff options
Diffstat (limited to 'lib/api')
| -rw-r--r-- | lib/api/__init__.py | 5 | ||||
| -rw-r--r-- | lib/api/install.py | 5 | ||||
| -rw-r--r-- | lib/api/server.py | 5 | ||||
| -rw-r--r-- | lib/api/simulator.py | 5 | ||||
| -rw-r--r-- | lib/api/stitch_plan.py | 5 |
5 files changed, 25 insertions, 0 deletions
diff --git a/lib/api/__init__.py b/lib/api/__init__.py index f93e59a9..35e411a7 100644 --- a/lib/api/__init__.py +++ b/lib/api/__init__.py @@ -1 +1,6 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from .server import APIServer
\ No newline at end of file diff --git a/lib/api/install.py b/lib/api/install.py index a0d5bba9..654f8171 100644 --- a/lib/api/install.py +++ b/lib/api/install.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import os import sys from glob import glob diff --git a/lib/api/server.py b/lib/api/server.py index 0db253c6..66087b4e 100644 --- a/lib/api/server.py +++ b/lib/api/server.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import errno import logging import socket diff --git a/lib/api/simulator.py b/lib/api/simulator.py index d11bd308..26c0246c 100644 --- a/lib/api/simulator.py +++ b/lib/api/simulator.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from flask import Blueprint simulator = Blueprint('simulator', __name__) diff --git a/lib/api/stitch_plan.py b/lib/api/stitch_plan.py index 95cdc7d8..2011b592 100644 --- a/lib/api/stitch_plan.py +++ b/lib/api/stitch_plan.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from flask import Blueprint, g, jsonify from ..stitch_plan import patches_to_stitch_plan |
