sig
  type decoded_url =
      File of string
    | Http of (string * int * string)
    | ExternalSource of (string * string * string option * string)
  val register_method : string -> unit
  val glx_decode_url : string -> Galax_url.decoded_url
end