We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seer types should be using embedding. See https://github.com/taubyte/tau/blob/main/protocols/seer/type.go
type oracleService struct { seer *Service }
and
type geoService struct { seer *Service }
Should be:
type oracleService struct { *Service }
type geoService struct { *Service }
The text was updated successfully, but these errors were encountered:
[seer] use embedding taubyte#161
37b4e11
[seer] use embedding #161
a0eb1db
d8627eb
No branches or pull requests
Seer types should be using embedding. See https://github.com/taubyte/tau/blob/main/protocols/seer/type.go
and
Should be:
and
The text was updated successfully, but these errors were encountered: