feat: Initial revision

This commit is contained in:
Adrian Rumpold
2022-07-04 06:51:34 +02:00
commit 0054a2d9ae
13 changed files with 468 additions and 0 deletions

9
pkg/model/model.go Normal file
View File

@@ -0,0 +1,9 @@
package model
type Event struct{}
type ClipboardUpdated struct {
Event
Content []byte `json:"content"`
ContentType string `json:"contentType"`
}