(ns duct-framework.boundary.ha
(:require
[duct-framework.component.wow])) ; this is correct
(defprotocol Ha)
(extend-protocol Ha
duct-framework.component.wow.Wow) ; should be _ instead of -
The correct one should be
(ns duct-framework.boundary.ha
(:require
[duct-framework.component.wow]))
(defprotocol Ha)
(extend-protocol Ha
duct_framework.component.wow.Wow)
Using
gen/boundary
will generate code below
The correct one should be