first version
This commit is contained in:
9
ts/smartacme.classes.smartacme.ts
Normal file
9
ts/smartacme.classes.smartacme.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import * as plugins from './smartacme.plugins'
|
||||
import * as acmeclient from './smartacme.classes.acmeclient'
|
||||
|
||||
export class SmartAcme {
|
||||
acmeClient: acmeclient.AcmeClient
|
||||
constructor(directoryUrlArg: string = 'https://acme-staging.api.letsencrypt.org/directory') {
|
||||
this.acmeClient = new acmeclient.AcmeClient(directoryUrlArg)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user