scrapli / scrapligo

scrapli, but in go!
MIT License
244 stars 35 forks source link

Question: Std Library SSH? #152

Closed deranjer closed 9 months ago

deranjer commented 10 months ago

Has there been any thought/consideration to moving away from calling SSH externally to using the standard library SSH package? Was hoping to use this package on windows and linux, as well as deployed to a solution that does not have an ssh package. I think all of my current issues with getting this package to work may be solved by moving away from the SSH binary requirement.

carlmontanari commented 10 months ago

transports are swappable, standard library transport is ssh here -- you're looking for the WithTransportType option when building your connection.

obviously you wont get auto magic 100% openssh support this way though.

carlmontanari commented 9 months ago

👋 gunna close this, hopefully that works for ya though!