aboutsummaryrefslogtreecommitdiff
path: root/src/Sound/MusicDirTrans.hs
blob: ed625fa5cffe4f50ebc3f09a136aa9af1ed7c2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Sound.MusicDirTrans
        ( -- * Getters
          getMetadata
        , getTracksInDir
    -- * Data types
        , AudioTrack(..)
        , ArtistPath(..)
        , Metadata(..)
    -- * Functions
        , copyToNewPath
        , genArtistPathFromTracks
        , mkArtistPath
        , mkNewDirs
        , mkRevertFile
        , mkRevertArtistPath
        , newPath
        , trackFilePatterns
        , revertFile
        )
where

import           Sound.MusicDirTrans.Directory
import           Sound.MusicDirTrans.File
import           Sound.MusicDirTrans.Type