diff options
Diffstat (limited to '')
-rw-r--r-- | storage/factory.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/factory.py b/storage/factory.py new file mode 100644 index 0000000..c1fa049 --- /dev/null +++ b/storage/factory.py @@ -0,0 +1,5 @@ +from sqlite import * + +def getStorage(): + x = sqlite() + return x |