#!/usr/bin/python3
# vim: ts=8 sw=8 sts=8 :

from __future__ import with_statement, print_function

try:
	import module_helper
except ImportError:
	# if oscfs is normally installed then this is okay
	pass
import oscfs.fs
import oscfs.misc

the_fs = oscfs.fs.OscFs()
the_fs.run()

