Moving to modules

This commit is contained in:
Max Lynch
2017-02-06 16:37:59 -06:00
parent dbd9df41f0
commit b05627d2d6
124 changed files with 8 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import os
import os.path
for root, dirs, files in os.walk('.'):
for f in files:
fname = os.path.splitext(f)[0]
os.mkdir(fname)
os.rename(f, fname + '/index.ts')