firasdarwish/ore

View on GitHub
internal/interfaces/some_counter.go

Summary

Maintainability
A
0 mins
Test Coverage
package interfaces

type SomeCounter interface {
    AddOne()
    GetCount() int
}