Update asset modification times and refactor import statements

- Updated the modification times for various assets in `bindata.go` to reflect recent changes.
- Refactored import statements in `team_invitation.go` to maintain consistency and improve code organization by moving the `utils` import to the correct position.
This commit is contained in:
Max 2025-10-31 11:13:57 +08:00
parent d17832c016
commit 0eff0091a0
2 changed files with 142 additions and 142 deletions

File diff suppressed because it is too large Load diff

View file

@ -18,11 +18,11 @@ import (
"github.com/yaoapp/kun/maps"
"github.com/yaoapp/yao/attachment"
"github.com/yaoapp/yao/messenger"
"github.com/yaoapp/yao/openapi/utils"
messengertypes "github.com/yaoapp/yao/messenger/types"
"github.com/yaoapp/yao/openapi/oauth"
"github.com/yaoapp/yao/openapi/oauth/authorized"
"github.com/yaoapp/yao/openapi/response"
"github.com/yaoapp/yao/openapi/utils"
"github.com/yaoapp/yao/share"
)