This commit is contained in:
dimitar 2025-04-12 08:24:40 +02:00
parent c2725dc06f
commit 5c232527c5
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
# Go RSS app

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module gitea.oblak.solutions/dimitar/gorss
go 1.23.6

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("heellooo")
}