Fork me on GitHub
#babashka
<
2020-06-21
>
Ahmed Hassan06:06:11

Can we do this in Babashka?

(ns my.ns
  (:require [babashka.pods :as pods]))
Or is it only way (below ns form):
(require '[babashka.pods :as pods])

borkdude06:06:20

Should work

Ahmed Hassan06:06:15

Where do you put pods, for example pod-babashka-etaoin file? anywhere on classpath?

borkdude07:06:44

On your file system

borkdude07:06:07

Load-pod expects a file path. Can be relative or absolute. If the file is on your system’s path, then it’s just the filename.

✔️ 3