How to use lein run driver-methods

In which directory should I run the command lein run driver-methods in order to get a list of all driver multimethods?
I cloned two 3rd-party drivers, but in both cases I get the output

No :main namespace specified in project.clj.

Will this list all multimethods implemented by the driver?
Or will it list all multimethods that a driver could implement?

After some extra searching, I found metabase/src/metabase/cmd.clj at master · metabase/metabase · GitHub
where the equivalent java command is mentioned:

java -jar metabase.jar driver-methods

The command's doc string states:

"Print a list of all multimethods a available for a driver to implement. A useful reference when implementing a new driver."

1 Like