文件名称:reminder:提醒是Golang套件,可让使用者安排快讯
文件大小:14KB
文件格式:ZIP
更新时间:2024-06-11 04:00:45
Go
提醒 提醒是Golang套件,可让用户安排警报。 它分为四个部分: 排程器 直放站 通知者 提醒 调度器需要在time.Time为要发送的第一次提醒。 中继器将规则应用于重复安排的事件-例如在固定的时间间隔或某些天 中继器可以组合(请参阅示例) 通知者定义了如何得到通知。 默认情况下, beeep软件包用于提供桌面通知 提醒将所有内容组合在一起,并允许用户按照给定的时间表发送指定的消息。 例子 安排一个活动 package main import ( "fmt" "time" "github.com/KrishanBhalla/reminder" "github.com/KrishanBhalla/reminder/notify" "github.com/KrishanBhalla/reminder/schedule" ) func main () { // Sched
【文件预览】:
reminder-main
----.gitignore(322B)
----go.mod(246B)
----schedule()
--------repeater.go(3KB)
--------schedule.go(2KB)
--------schedule_test.go(501B)
--------repeater_test.go(3KB)
----assets()
--------reminder.png(2KB)
----LICENSE(1KB)
----go.sum(3KB)
----.github()
--------ISSUE_TEMPLATE()
--------workflows()
----README.md(4KB)
----notify()
--------notifier.go(2KB)
----reminder.go(595B)