Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit 91ada6d

Browse files
committed
initial empty implementation
1 parent 2194446 commit 91ada6d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

multihash.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# pymultihash: Python implementation of the multihash specification
2+
#
3+
# Initial author: Ivan Vilata-i-Balaguer
4+
# License: MIT
5+
6+
def _test():
7+
import doctest
8+
doctest.testmod()
9+
10+
if __name__ == '__main__':
11+
_test()

0 commit comments

Comments
 (0)