-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
78 lines (67 loc) · 1.81 KB
/
main.go
File metadata and controls
78 lines (67 loc) · 1.81 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// genimg is a lightweight tool for generating random images at custom sizes.
// Copyright (C) 2025 Enindu Alahapperuma
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
// genimg is a lightweight tool for generating random images at custom sizes.
//
// Usage:
//
// genimg <command>:<subcommand> [arguments]
// genimg [flags]
//
// Available commands:
//
// source
//
// Available flags:
//
// -v, --version # View version message
// -h, --help # View help message
//
// Use "genimg <command>:help" to see more information about commands.
package main
import (
"fmt"
"os"
"github.com/enindu/genimg/commands/source"
)
func main() {
dispatchers := map[string]func([]string){
"source:local": source.Local,
"source:picsum": source.Picsum,
"source:pexels": source.Pexels,
"source:help": source.Help,
}
inputs := os.Args
if len(inputs) < 2 {
fmt.Fprintf(os.Stderr, "%s\n", errNoInstruction.Error())
return
}
instruction := inputs[1]
switch instruction {
case "-v", "--version":
version()
return
case "-h", "--help":
help()
return
}
execute, exists := dispatchers[instruction]
if !exists {
fmt.Fprintf(os.Stderr, "%s\n", errInvalidCommand.Error())
return
}
arguments := inputs[2:]
execute(arguments)
}