mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
24 lines
627 B
Elm
Executable file
24 lines
627 B
Elm
Executable file
module Cuckery.CuckList.RobMeijer.RobMeijer exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckRobMeijer : Cuck
|
|
cuckRobMeijer =
|
|
let
|
|
name : String
|
|
name =
|
|
"Rob Meijer"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/EngineerDiet"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1435850829051793408?s=20"
|
|
, dodgeDescription = RanAway
|
|
, dodgeProposition = noProposition
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|