11 lines
209 B
Python
11 lines
209 B
Python
import os
|
|
|
|
def get_app_class(template):
|
|
class App(template):
|
|
def F_main(self):
|
|
for file in os.listdir(self.argv[1]):
|
|
print(file)
|
|
self.exit()
|
|
|
|
return App
|