mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-03-22 22:00:13 +00:00
8 lines
189 B
Go
8 lines
189 B
Go
package symbols
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
ErrDuplicateSymbol = fmt.Errorf("symbols: a symbol already exists at that address")
|
|
ErrLineLeftEmpty = fmt.Errorf("symbols: line was left empty")
|
|
)
|