mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
25 lines
573 B
Elm
25 lines
573 B
Elm
![]() |
module Cuckery.CuckList.Template%20copy%2011 exposing (..)module Cuckery.CuckList.Template exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
templateCuck : Cuck
|
||
|
templateCuck =
|
||
|
let
|
||
|
name : String
|
||
|
name =
|
||
|
""
|
||
|
in
|
||
|
{ cuckImage = formatCuckName name
|
||
|
, cuckName = name
|
||
|
, cuckSocial = ""
|
||
|
, cuckDodges =
|
||
|
[ { dodgeLink = ""
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "."
|
||
|
, dodgeNicksDoxasticState = Just Agnostic
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
]
|
||
|
}
|