We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
A no operation package with go.
A no-op in golang.It does nothing.
go get github.com/bhargav175/noop
import"github.com/bhargav175/noop"// ...varafunc()ifwant_to_do_something==true {a=func() {//do something }}else{a=noop.Noop}a()// ...