firasdarwish/ore

View on GitHub
internal/models/person.go

Summary

Maintainability
A
0 mins
Test Coverage
package models

type IPerson interface{}
type Broker struct {
    Name string
} //implements IPerson

type Trader struct {
    Name string
} //implements IPerson

type IHuman interface{}