@@ -6,6 +6,17 @@ import (
66 "os"
77 "path/filepath"
88
9+ "github.com/gorilla/mux"
10+ "github.com/rakyll/statik/fs"
11+ "github.com/spf13/cast"
12+
13+ abci "github.com/tendermint/tendermint/abci/types"
14+ tmjson "github.com/tendermint/tendermint/libs/json"
15+ "github.com/tendermint/tendermint/libs/log"
16+ tmos "github.com/tendermint/tendermint/libs/os"
17+ tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
18+ dbm "github.com/tendermint/tm-db"
19+
920 ibcclient "github.com/cosmos/cosmos-sdk/x/ibc/core/02-client"
1021 paramproposal "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
1122
@@ -72,7 +83,7 @@ import (
7283 upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
7384 upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
7485 upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
75- "github.com/gorilla/mux"
86+
7687 appparams "github.com/osmosis-labs/osmosis/app/params"
7788 _ "github.com/osmosis-labs/osmosis/client/docs/statik"
7889 "github.com/osmosis-labs/osmosis/x/claim"
@@ -97,14 +108,6 @@ import (
97108 poolincentivesclient "github.com/osmosis-labs/osmosis/x/pool-incentives/client"
98109 poolincentiveskeeper "github.com/osmosis-labs/osmosis/x/pool-incentives/keeper"
99110 poolincentivestypes "github.com/osmosis-labs/osmosis/x/pool-incentives/types"
100- "github.com/rakyll/statik/fs"
101- "github.com/spf13/cast"
102- abci "github.com/tendermint/tendermint/abci/types"
103- tmjson "github.com/tendermint/tendermint/libs/json"
104- "github.com/tendermint/tendermint/libs/log"
105- tmos "github.com/tendermint/tendermint/libs/os"
106- tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
107- dbm "github.com/tendermint/tm-db"
108111)
109112
110113const appName = "OsmosisApp"
0 commit comments