sig
  exception Failed_404
  exception Failed_403
  exception NotReadableDirectory
  type resolved = RFile of string | RDir of string
  val resolve :
    ?no_check_for:string ->
    request:Ocsigen_extensions.request ->
    filename:string -> Ocsigen_local_files.resolved
  val content :
    request:Ocsigen_extensions.request ->
    file:Ocsigen_local_files.resolved -> Ocsigen_http_frame.result Lwt.t
end