Skip to content

Commit d5f8c11

Browse files
committed
chore: update license headers and go version
1 parent 1a0f8e7 commit d5f8c11

File tree

5 files changed

+43
-4
lines changed

5 files changed

+43
-4
lines changed

notification-wecom/schema.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ package wecom
2222
type WebhookReq struct {
2323
MsgType string `json:"msgtype"`
2424
Markdown struct {
25-
Text string `json:"content"`
25+
Text string `json:"content"`
2626
} `json:"markdown"`
2727
}
2828

2929
func NewWebhookReq(content string) *WebhookReq {
3030
return &WebhookReq{
3131
MsgType: "markdown",
3232
Markdown: struct {
33-
Text string `json:"content"`
33+
Text string `json:"content"`
3434
}{
35-
Text: content,
35+
Text: content,
3636
},
3737
}
3838
}

quick-links/Component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
1920
import { useTranslation } from 'react-i18next';
2021
import useSWR from 'swr'
2122

quick-links/i18n/translation.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package i18n
221

322
const (

quick-links/vite.config.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
import { defineConfig } from 'vite';
221
import react from '@vitejs/plugin-react-swc';
322
import ViteYaml from '@modyfi/vite-plugin-yaml';

search-algolia/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/apache/answer-plugins/search-algolia
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/algolia/algoliasearch-client-go/v4 v4.28.1

0 commit comments

Comments
 (0)