mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07:00
Lint fix & tidy up
This commit is contained in:
@@ -5,7 +5,7 @@ import (
|
||||
|
||||
"testproject/mypackage"
|
||||
|
||||
wails "github.com/wailsapp/wails/v2"
|
||||
"github.com/wailsapp/wails/v2"
|
||||
)
|
||||
|
||||
// Basic application struct
|
||||
@@ -56,11 +56,11 @@ func (b *Basic) Greet(name string) string {
|
||||
}
|
||||
|
||||
// MultipleGreets returns greetings for the given name
|
||||
func (b *Basic) MultipleGreets(name string) []string {
|
||||
func (b *Basic) MultipleGreets(_ string) []string {
|
||||
return []string{"hi", "hello", "croeso!"}
|
||||
}
|
||||
|
||||
// RemovePerson Removes the given person
|
||||
func (b *Basic) RemovePerson(p *mypackage.Person) {
|
||||
func (b *Basic) RemovePerson(_ *mypackage.Person) {
|
||||
// dummy
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user