chore[ci]: comment plugin

This commit is contained in:
blob42 2024-10-11 18:35:59 +02:00
parent 975a2218ef
commit 11ea43714d
3 changed files with 29 additions and 3 deletions

View File

@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.23'
- name: Build
run: make

View File

@ -37,9 +37,9 @@ import (
// Load firefox browser modules
_ "github.com/blob42/gosuki/browsers/firefox"
// Load chrome browser module
// _ "github.com/blob42/gosuki/browsers/chrome"
_ "github.com/blob42/gosuki/browsers/chrome"
// github module
_ "gosuki/mod-gh-stars"
// _ "gosuki/mod-gh-stars"
)
var log = logging.GetLogger("MAIN")

26
cmd/suki/suki.go Normal file
View File

@ -0,0 +1,26 @@
// Copyright (c) 2024 Chakib Ben Ziane <contact@blob42.xyz> and [`gosuki` contributors](https://github.com/blob42/gosuki/graphs/contributors).
// All rights reserved.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
//
// This file is part of GoSuki.
//
// GoSuki is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// GoSuki is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with gosuki. If not, see <http://www.gnu.org/licenses/>.
package main
import "fmt"
func main() {
fmt.Println("suki bookmark cli!")
}