mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6 lines
156 B
Go
6 lines
156 B
Go
|
package cmd
|
||
|
|
||
|
type vpnConfigurer interface {
|
||
|
Configure(clientVpnIp string, coordinatorPubKey string, coordinatorPubIP string, clientPrivKey string) error
|
||
|
}
|