Source file seed.ml

1
2
3
4
5
6
7
module Make (UserService : Sig.SERVICE) = struct
  let admin ~email ~password = UserService.create_admin ~email ~password ~username:None

  let user ~email ~password ?username () =
    UserService.create_user ~email ~password ~username
  ;;
end