We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957facc commit 7962062Copy full SHA for 7962062
registry.go
@@ -14,9 +14,9 @@ import (
14
15
const (
16
TopicRegisterTool string = "polaris:tool:register"
17
- TopicUnregisterTool = "polaris:tool:unregister"
18
- TopicToolKeepalive = "polaris:tool:keepalive"
19
- TopicListTool = "polaris:tool:list"
+ TopicUnregisterTool string = "polaris:tool:unregister"
+ TopicToolKeepalive string = "polaris:tool:keepalive"
+ TopicListTool string = "polaris:tool:list"
20
)
21
22
type toolDeclareWithDeadline struct {
tool.go
@@ -6,7 +6,7 @@ type NullableType string
6
7
8
NullableYes NullableType = "yes"
9
- NullableNo = "no"
+ NullableNo NullableType = "no"
10
11
12
func (n NullableType) Nullable() bool {
0 commit comments