All Downloads are FREE. Search and download functionalities are using the official Maven repository.

checklist.MessagesSyntax.scala Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package checklist

import cats.data.NonEmptyList

trait MessageSyntax {
  def error(str: String): NonEmptyList[Message] =
    NonEmptyList(ErrorMessage(str), Nil)

  def warning(str: String): NonEmptyList[Message] =
    NonEmptyList(WarningMessage(str), Nil)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy