This commit is contained in:
idanoo 2022-11-20 17:36:31 +13:00
commit d8b42a2a84
Signed by: idanoo
GPG Key ID: 387387CDBC02F132
4 changed files with 14 additions and 0 deletions

3
.env.example Normal file
View File

@ -0,0 +1,3 @@
MATRIX_WEBHOOK_URL=
MATRIX_WEBHOOK_API_KEY=
MATRIX_CHANNEL=

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module tinker.nz/idanoo/go-mastodon-matrix-webhooks
go 1.19

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "log"
func main() {
log.Printf("Test")
}