File tree Expand file tree Collapse file tree 5 files changed +3
-58
lines changed Expand file tree Collapse file tree 5 files changed +3
-58
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- // SPDX-FileCopyrightText: 2024 caixw
1
+ // SPDX-FileCopyrightText: 2024-2025 caixw
2
2
//
3
3
// SPDX-License-Identifier: MIT
4
4
@@ -8,9 +8,8 @@ package yaml
8
8
import (
9
9
"io"
10
10
11
- "gopkg.in/yaml.v3"
12
-
13
11
"github.com/issue9/mux/v9/header"
12
+ "gopkg.in/yaml.v3"
14
13
15
14
"github.com/issue9/web"
16
15
)
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import (
34
34
"github.com/issue9/web/mimetype/html"
35
35
"github.com/issue9/web/mimetype/json"
36
36
"github.com/issue9/web/mimetype/nop"
37
- "github.com/issue9/web/mimetype/toml"
38
37
"github.com/issue9/web/mimetype/xml"
39
38
"github.com/issue9/web/mimetype/yaml"
40
39
"github.com/issue9/web/server"
@@ -202,7 +201,6 @@ func init() {
202
201
RegisterMimetype (yaml .Marshal , yaml .Unmarshal , "yaml" )
203
202
RegisterMimetype (cbor .Marshal , cbor .Unmarshal , "cbor" )
204
203
RegisterMimetype (xml .Marshal , xml .Unmarshal , "xml" )
205
- RegisterMimetype (toml .Marshal , toml .Unmarshal , "toml" )
206
204
RegisterMimetype (html .Marshal , html .Unmarshal , "html" )
207
205
RegisterMimetype (form .Marshal , form .Unmarshal , "form" )
208
206
RegisterMimetype (gob .Marshal , gob .Unmarshal , "gob" )
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
)
26
26
27
27
// Version 当前框架的版本
28
- const Version = "0.102.10 "
28
+ const Version = "0.102.11 "
29
29
30
30
type (
31
31
Logger = logs.Logger
You can’t perform that action at this time.
0 commit comments