feat(comment): add comment on on interface method

This commit is contained in:
Oleksandr Smirnov 2025-09-04 14:17:58 +03:00
parent 26207b1928
commit 3cd45c45a3
No known key found for this signature in database
9 changed files with 91 additions and 13 deletions

View file

@ -0,0 +1,5 @@
package main
type Testinger interface {
Method(input string) error
}