Initial Commit

This commit is contained in:
Joren 2024-06-16 14:31:41 +02:00
parent a54fa63029
commit 47fc84b70a
Signed by: Joren
GPG Key ID: 280E33DFBC0F1B55
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# SMS Hook
## What?
The purpose of SmsHook is to provide a simple library that provides a webhook where texts can be send to it using something like [Sms Forwarder](https://github.com/bogkonstantin/android_income_sms_gateway_webhook).

9
cmd/smshook/smshook.go Normal file
View File

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

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module SmsHook
go 1.22.4