File tree Expand file tree Collapse file tree 5 files changed +43
-4
lines changed
Expand file tree Collapse file tree 5 files changed +43
-4
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ package wecom
2222type 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
2929func 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}
Original file line number Diff line number Diff line change 1616 * specific language governing permissions and limitations
1717 * under the License.
1818 */
19+
1920import { useTranslation } from 'react-i18next' ;
2021import useSWR from 'swr'
2122
Original file line number Diff line number Diff line change 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+
120package i18n
221
322const (
Original file line number Diff line number Diff line change 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+
120import { defineConfig } from 'vite' ;
221import react from '@vitejs/plugin-react-swc' ;
322import ViteYaml from '@modyfi/vite-plugin-yaml' ;
Original file line number Diff line number Diff line change 11module github.com/apache/answer-plugins/search-algolia
22
3- go 1.22 .0
3+ go 1.23 .0
44
55require (
66 github.com/algolia/algoliasearch-client-go/v4 v4.28.1
You can’t perform that action at this time.
0 commit comments