Skip to content

Commit

Permalink
Discard changes to plug_config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak authored Oct 18, 2024
1 parent f1c2f77 commit ee5caf9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion plug_config.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
from plugs.manager import PlugManager
from plugs.plug import Plug

abdm_plugin = Plug(
name="abdm",
package_name="git+https://github.com/ohcnetwork/care_abdm.git",
version="@main",
configs={},
)

hcx_plugin = Plug(
name="hcx",
package_name="git+https://github.com/ohcnetwork/care_hcx.git",
version="@main",
configs={},
)

plugs = [hcx_plugin]
plugs = [hcx_plugin, abdm_plugin]

manager = PlugManager(plugs)

0 comments on commit ee5caf9

Please sign in to comment.