1{-# LANGUAGE NoImplicitPrelude #-}
2
3module System.Info.ShortPathName
4  ( getShortPathName
5  ) where
6
7import RIO.FilePath (FilePath)
8import RIO.Prelude (pure)
9import RIO.Prelude.Types (IO)
10
11getShortPathName :: FilePath -> IO FilePath
12getShortPathName = pure
13