* refactor(comment): dont use unnecessary function * chore: quick way to open vim in dev mode * feat(comment): add comment on on interface method * feat(comment): add comment on a struct field * feat(comment): add comment on a variable * docs: add note about the generate function * docs: gopher.TsResult * fix(utils): handle case when indentation is wrong
19 lines
176 B
Go
19 lines
176 B
Go
package main
|
|
|
|
type (
|
|
TestOne struct {
|
|
Asdf string
|
|
ID int
|
|
}
|
|
|
|
TestTwo struct {
|
|
// Fesa
|
|
Fesa int
|
|
A bool
|
|
}
|
|
|
|
TestThree struct {
|
|
Asufj int
|
|
Fs string
|
|
}
|
|
)
|