Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaka0325 committed Jul 17, 2020
1 parent bcdcd95 commit a265027
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions kadai1/tanaka0325/imgconv/args.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package imgconv

// Args is type for command line arguments.
type Args []string

func (args Args) uniq() []string {
Expand Down
1 change: 1 addition & 0 deletions kadai1/tanaka0325/imgconv/conv_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"golang.org/x/image/tiff"
)

// convImage is type included infomation to convert file format.
type convImage struct {
filename string
fromExt string
Expand Down
1 change: 1 addition & 0 deletions kadai1/tanaka0325/imgconv/imgconv.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Imgconv package is to convert images file format.
package imgconv

import (
Expand Down
1 change: 1 addition & 0 deletions kadai1/tanaka0325/imgconv/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"strings"
)

// Args is type for command line options.
type Options struct {
From *string
To *string
Expand Down

0 comments on commit a265027

Please sign in to comment.