mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
24 lines
639 B
Elm
Executable file
24 lines
639 B
Elm
Executable file
module Cuckery.CuckList.AmberOHearn exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckAmberOHearn : Cuck
|
|
cuckAmberOHearn =
|
|
let
|
|
name : String
|
|
name =
|
|
"Amber O Hearn"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://twitter.com/KetoCarnivore"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://twitter.com/FusionProgGuy/status/1413888976281169922?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = noProposition
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|