blob: 2e2d72c6dfdac44bb17483c9fdb2411178a72a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | A module to wrap the CDN and provide convient helper functions to assets.
module Hero.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/"
|