aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/config.go
blob: c27b3671e99f61bc3c82d10f16604ad86a72ee83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main

import (
	"log"

	"github.com/BurntSushi/toml"
)

type Config struct {
	Provider map[string]Provider
	Account  map[string]Account
	Hook     map[string]Hook
	Desire   []Desire
}

type Provider struct {
	Directory string
}

type Account struct {
	Mail     string
	Key      string
	Provider string
}

type Desire struct {
	Altnames  []string
	Key       string
	Cert      string
	Webroot   string
	Account   string
	Gracetime string
	Hook      []string
}

type Hook struct {
	CMD string
}

func ReadConfig(fname string) Config {
	var c Config
	_, err := toml.DecodeFile(fname, &c)
	if err != nil {
		log.Fatal(err)
	}
	return c
}