mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
9 lines
282 B
Go
9 lines
282 B
Go
// Package app contains tool imports to ensure required dependencies are included
|
|||
|
|
// in the module graph even if they're not directly referenced in the code.
|
||
|
|
// This prevents "go mod tidy" from removing necessary indirect dependencies.
|
||
|
|
package app
|
||
|
|
|
||
|
|
import (
|
||
|
|
_ "cosmossdk.io/orm"
|
||
|
|
)
|