Skip to content

Instantly share code, notes, and snippets.

@Cartmanishere
Created February 14, 2021 12:26
Show Gist options
  • Save Cartmanishere/e92c6ab8cfa95a0a8dd912f5e3e088c3 to your computer and use it in GitHub Desktop.
Save Cartmanishere/e92c6ab8cfa95a0a8dd912f5e3e088c3 to your computer and use it in GitHub Desktop.
(defn http-loader
[base-url-prefix]
(doto (proxy
[URLTemplateLoader] []
(^String resolve [^String path]
(str (proxy-super getPrefix)
path
(.getSuffix this)))
(^URL getResource [^String location]
(URL. location)))
(.setPrefix base-url-prefix)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment