binhonglee/GlobeTrotte

View on GitHub
src/turbine/structs/istructs.go

Summary

Maintainability
A
0 mins
Test Coverage
package structs

// IStructs - Just a General Interface.
type IStructs interface {
    GetID() int
    SetID(id int)
}