diff --git a/semantic-python/src/Language/Python/Core.hs b/semantic-python/src/Language/Python/Core.hs index 598c17094..61adfef38 100644 --- a/semantic-python/src/Language/Python/Core.hs +++ b/semantic-python/src/Language/Python/Core.hs @@ -1,2 +1,8 @@ module Language.Python.Core -() where +( compileModule +) where + +import TreeSitter.Python.AST + +compileModule :: Module -> () +compileModule _ = ()