Browse Source

Update tacd standalone server

pull/5/head
Rodolphe Breard 5 years ago
parent
commit
e403cc9b4c
  1. 4
      tacd/src/standalone_server.rs

4
tacd/src/standalone_server.rs

@ -1,10 +1,10 @@
use acme_common::crypto::{PrivateKey, X509Certificate};
use acme_common::crypto::{KeyPair, X509Certificate};
use acme_common::error::Error;
pub fn start(
listen_addr: &str,
certificate: &X509Certificate,
private_key: &PrivateKey,
key_pair: &KeyPair,
) -> Result<(), Error> {
Err("The standalone server is not implemented yet.".into())
}
Loading…
Cancel
Save