Skip to content

Commit

Permalink
Add licence to client code
Browse files Browse the repository at this point in the history
  • Loading branch information
s-cork committed May 12, 2020
1 parent 80bda02 commit ade9051
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions client_code/_logging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
"""
HashRouting
Copyright 2020 Stu Cork
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Source code published at https://github.com/s-cork/HashRouting
"""

class Logger():
def __init__(self, debug, msg=''):
self.debug = debug
Expand Down
14 changes: 14 additions & 0 deletions client_code/routing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
"""
HashRouting
Copyright 2020 Stu Cork
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Source code published at https://github.com/s-cork/HashRouting
"""


import anvil as _anvil
from collections import namedtuple as _namedtuple
from ._logging import logger
Expand Down

0 comments on commit ade9051

Please sign in to comment.