mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 09:21:39 +00:00
9 lines
282 B
Go
Executable File
9 lines
282 B
Go
Executable File
// 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"
|
|
)
|