Guest User

Untitled

a guest
May 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. object ApiResponse {
  2. def failure[T](e :Exception): ApiResponse[T] = Left(e)
  3. def success[T](t: T): ApiResponse[T] = Right(t)
  4. }
Add Comment
Please, Sign In to add comment