]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - main.go
First working version
[nsscash/nsscash.git] / main.go
1 // Main file for nsscash
2
3 // Copyright (C) 2019  Simon Ruderich
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Affero General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU Affero General Public License for more details.
14 //
15 // You should have received a copy of the GNU Affero General Public License
16 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18 package main
19
20 import (
21         "log"
22         "os"
23 )
24
25 func main() {
26         if len(os.Args) != 2 {
27                 log.SetFlags(0)
28                 log.Fatalf("usage: %s <path/to/config>\n", os.Args[0])
29         }
30
31         cfg, err := LoadConfig(os.Args[1])
32         if err != nil {
33                 log.Fatal(err)
34         }
35         state, err := LoadState(cfg.StatePath)
36         if err != nil {
37                 log.Fatal(err)
38         }
39
40         err = handleFiles(cfg, state)
41         if err != nil {
42                 log.Fatal(err)
43         }
44
45         err = WriteStateIfChanged(cfg.StatePath, state)
46         if err != nil {
47                 log.Fatal(err)
48         }
49 }