-- | Copyright: (c) 2021 The closed eye of love -- SPDX-License-Identifier: BSD-3-Clause -- Maintainer: Poscat , berberman -- Stability: alpha -- Portability: portable -- Example usage: -- -- @ -- import Web.Pixiv -- -- main :: IO () -- main = do -- let credential = RefreshToken "token" -- illust <- runPixivT' credential $ getIllustDetail 70479649 -- print illust -- @ -- This will print illustration information of . -- -- More information is available on [README](https://github.com/The-closed-eye-of-love/pixiv). module Web.Pixiv ( module Web.Pixiv.API, module Web.Pixiv.Types, module Web.Pixiv.Types.PixivT, Credential (..), ) where import Web.Pixiv.API import Web.Pixiv.Auth import Web.Pixiv.Types import Web.Pixiv.Types.PixivT