File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
kadai1/tanaka0325/imgconv Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 11package imgconv
22
3+ // Args is type for command line arguments.
34type Args []string
45
56func (args Args ) uniq () []string {
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import (
1313 "golang.org/x/image/tiff"
1414)
1515
16+ // convImage is type included infomation to convert file format.
1617type convImage struct {
1718 filename string
1819 fromExt string
Original file line number Diff line number Diff line change 1+ // Imgconv package is to convert images file format.
12package imgconv
23
34import (
Original file line number Diff line number Diff line change 66 "strings"
77)
88
9+ // Args is type for command line options.
910type Options struct {
1011 From * string
1112 To * string
You can’t perform that action at this time.
0 commit comments