Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
added license header.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsmedina committed Jul 8, 2014
1 parent 5ead76e commit 0562c8c
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
#
deps:
@pip install -r requirements.txt

Expand Down
4 changes: 4 additions & 0 deletions healthcheck/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

__version__ = "0.1.0"
4 changes: 4 additions & 0 deletions healthcheck/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

from flask import Flask, request

import inspect
Expand Down
4 changes: 4 additions & 0 deletions healthcheck/backends/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import os

from healthcheck.storage import Item, Group, User
Expand Down
4 changes: 4 additions & 0 deletions healthcheck/plugin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env python

# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import httplib
import sys
import urllib
Expand Down
4 changes: 4 additions & 0 deletions healthcheck/storage.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import os


Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

from setuptools import setup, find_packages

from healthcheck import __version__
Expand Down
4 changes: 4 additions & 0 deletions tests/backends/test_zabbix.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

from unittest import TestCase

from healthcheck.storage import Item, User
Expand Down
4 changes: 4 additions & 0 deletions tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import unittest
import mock
import inspect
Expand Down
4 changes: 4 additions & 0 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import unittest
import mock
import urllib
Expand Down
4 changes: 4 additions & 0 deletions tests/test_storage.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright 2014 healthcheck-as-a-service authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

import unittest
import mock
import os
Expand Down

0 comments on commit 0562c8c

Please sign in to comment.