(email, publicKey, peerIP, iface string, includeInterface bool)
| 232 | } |
| 233 | |
| 234 | func buildWGUser(email, publicKey, peerIP, iface string, includeInterface bool) *common.User { |
| 235 | return buildWGUserWithPeerIPs(email, publicKey, []string{peerIP}, iface, includeInterface) |
| 236 | } |
| 237 | |
| 238 | func buildWGUserWithPeerIPs(email, publicKey string, peerIPs []string, iface string, includeInterface bool) *common.User { |
| 239 | inbounds := []string{} |
no test coverage detected