blob: f4fabde344b2a871f6c19840d96702bb6ec9d7f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | A module to wrap the CDN and provide convient helper functions to assets.
module Com.MusicMeetsComics.Assets where
import Protolude
cdnEdge :: Text
cdnEdge = "https://heroverse.sfo2.cdn.digitaloceanspaces.com"
demo :: Text
demo = cdnEdge <> "/old-assets/demo/"
icon :: Text
icon = cdnEdge <> "/icons/"
|