package FPauth-core

  1. Overview
  2. Docs

Source file FPauth_core.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Static = Static

module Variables = Variables
module Session_manager = Session_manager
module Authenticator = Authenticator
module Router = Router


module Make_Auth (M : Auth_sign.MODEL) = struct

  module Variables = Variables.Make (M)

  module Session_manager = Session_manager.Make (M) (Variables)

  module Authenticator = Authenticator.Make (M) (Variables)

  module Router = Router.Make (M) (Authenticator) (Variables)
end

module Auth_sign = Auth_sign