mirror of
https://github.com/github/semantic.git
synced 2024-12-21 13:51:44 +03:00
20 lines
345 B
Haskell
20 lines
345 B
Haskell
{-# LANGUAGE ApplicativeDo #-}
|
|
{-# LANGUAGE TypeApplications #-}
|
|
module CLI (main) where
|
|
|
|
import System.Environment
|
|
import TreeSitter.Unmarshal
|
|
import TreeSitter.Python.AST
|
|
import TreeSitter.Python
|
|
import Source.Range
|
|
import Source.Span
|
|
import Data.ByteString (ByteString)
|
|
|
|
|
|
|
|
|
|
main :: IO ()
|
|
main = do
|
|
args <- getArgs
|
|
parseByteString getArgs
|