Module Release_config_parser

module Release_config_parser: sig .. end

type token = 
| IDENT of string
| INTEGER of int
| FLOAT of float
| BOOL of bool
| STRING of string
| REGEXP of Str.regexp
| LOG_LEVEL of Lwt_log.level
| EQUALS
| LBRACKET
| RBRACKET
| COMMA
val input : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> unit