packages feed

polysemy-account-0.1.0.0: lib/Polysemy/Account/Data/AuthForAccount.hs

-- | Description: Account by name query data type
module Polysemy.Account.Data.AuthForAccount where

-- | Query payload for looking up auth info by account ID.
data AuthForAccount i =
  AuthForAccount { account :: i }
  deriving stock (Eq, Show, Generic, Ord)