blob: 06386b8c8e20915a0a8b0cd89af518d87d073e5b (
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 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/"
|