Module Github_hooks

Github Hooks

type server_tls_config = [ `Crt_file_path of string ] * [ `Key_file_path of string ] * [ `Password of bool -> string | `No_password ] * [ `Port of int ]

The type for TLS server configuration. Similar to Conduit_lwt_unix.server_tls_config

module Repo : sig ... end
module type CONFIGURATION = sig ... end
module type TIME = sig ... end
module type SERVER = sig ... end
module type HOOKS = sig ... end
module Make : functor (Time : TIME) -> functor (Github : Github_s.Github) -> functor (Server : SERVER) -> functor (Conf : CONFIGURATION) -> HOOKS with type token = Github.Token.t