8 lines
89 B
Go
8 lines
89 B
Go
package parsing
|
|
|
|
import "math/big"
|
|
|
|
type Parser interface {
|
|
Parse() (*big.Int, error)
|
|
}
|