example/context

Types

pub type ContextAuthenticated {
  ContextAuthenticated(db: String, user: User)
}

Constructors

  • ContextAuthenticated(db: String, user: User)
pub type InitialContext {
  InitialContext(db: String)
}

Constructors

  • InitialContext(db: String)
pub type User {
  User(email: String, role: String)
}

Constructors

  • User(email: String, role: String)