dune/src/opam_file.mli

15 lines
240 B
OCaml
Raw Normal View History

(** Parsing and interpretation of opam files *)
2018-04-24 20:25:27 +00:00
open Stdune
open OpamParserTypes
(** Type of opam files *)
type t = opamfile
(** Load a file *)
2018-04-24 20:25:27 +00:00
val load : Path.t -> t
(** Extracts a field *)
val get_field : t -> string -> value option