forked from TrueCloudLab/neoneo-go
examples: remove underscores from package names
Fixes golint warnings: "don't use an underscore in package name" and makes our examples better. Refs. #213.
This commit is contained in:
parent
a9b9c9226d
commit
30eb137200
5 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
package engine_contract
|
package enginecontract
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/CityOfZion/neo-go/pkg/interop/engine"
|
"github.com/CityOfZion/neo-go/pkg/interop/engine"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package iterator_contract
|
package iteratorcontract
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/CityOfZion/neo-go/pkg/interop/iterator"
|
"github.com/CityOfZion/neo-go/pkg/interop/iterator"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package runtime_contract
|
package runtimecontract
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/CityOfZion/neo-go/pkg/interop/runtime"
|
"github.com/CityOfZion/neo-go/pkg/interop/runtime"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package storage_contract
|
package storagecontract
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/CityOfZion/neo-go/pkg/interop/storage"
|
"github.com/CityOfZion/neo-go/pkg/interop/storage"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package token_contract
|
package tokencontract
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/CityOfZion/neo-go/examples/token/nep5"
|
"github.com/CityOfZion/neo-go/examples/token/nep5"
|
||||||
|
|
Loading…
Reference in a new issue