Merge pull request 'gofmt -s code' (#209) from gofmt into master

Reviewed-on: #209
This commit is contained in:
Василий Толстов 2023-04-11 23:34:41 +03:00
commit 963a0fa7b7
5 changed files with 15 additions and 14 deletions

View File

@ -145,12 +145,11 @@ type Stream interface {
// //
// Example: // Example:
// //
// type Greeter struct {} // type Greeter struct {}
//
// func (g *Greeter) Hello(context, request, response) error {
// return nil
// }
// //
// func (g *Greeter) Hello(context, request, response) error {
// return nil
// }
type Handler interface { type Handler interface {
Name() string Name() string
Handler() interface{} Handler() interface{}

View File

@ -88,6 +88,7 @@ func (s *service) Name() string {
// Init initialises options. Additionally it calls cmd.Init // Init initialises options. Additionally it calls cmd.Init
// which parses command line flags. cmd.Init is only called // which parses command line flags. cmd.Init is only called
// on first Init. // on first Init.
//
//nolint:gocyclo //nolint:gocyclo
func (s *service) Init(opts ...Option) error { func (s *service) Init(opts ...Option) error {
var err error var err error

View File

@ -58,6 +58,7 @@ func IsLocal(addr string) bool {
} }
// Extract returns a real ip // Extract returns a real ip
//
//nolint:gocyclo //nolint:gocyclo
func Extract(addr string) (string, error) { func Extract(addr string) (string, error) {
// if addr specified then its returned // if addr specified then its returned

View File

@ -493,13 +493,14 @@ func btSplitter(str string) []string {
} }
// queryToMap turns something like a[b][c]=4 into // queryToMap turns something like a[b][c]=4 into
// map[string]interface{}{ //
// "a": map[string]interface{}{ // map[string]interface{}{
// "b": map[string]interface{}{ // "a": map[string]interface{}{
// "c": 4, // "b": map[string]interface{}{
// }, // "c": 4,
// }, // },
// } // },
// }
func queryToMap(param string) (map[string]interface{}, error) { func queryToMap(param string) (map[string]interface{}, error) {
rawKey, rawValue, err := splitKeyAndValue(param) rawKey, rawValue, err := splitKeyAndValue(param)
if err != nil { if err != nil {

View File

@ -1,6 +1,5 @@
package text package text
func DetectEncoding(text string) map[string]int { func DetectEncoding(text string) map[string]int {
charsets := map[string]int{ charsets := map[string]int{
"UTF-8": 0, "UTF-8": 0,
@ -77,7 +76,7 @@ func DetectEncoding(text string) map[string]int {
charsets["MAC"] += uppercase charsets["MAC"] += uppercase
} }
last_simb = char last_simb = char
} }
return charsets return charsets