8 lines
70 B
Go
8 lines
70 B
Go
|
package logic
|
||
|
|
||
|
type IRegister interface {
|
||
|
}
|
||
|
|
||
|
type Register struct {
|
||
|
}
|