Initial Commit

This commit is contained in:
steven carpenter 2025-07-27 15:11:43 -04:00
commit 87a522daab
22 changed files with 1555 additions and 0 deletions

17
proto/calendar.proto Normal file
View file

@ -0,0 +1,17 @@
syntax = "proto3";
package calendar;
option go_package = "git.skdevstudios.com/SK-Development-Studios/go-cal-tui/calendar";
message Event {
string title = 1;
string description = 2;
int32 year = 3;
int32 month = 4;
int32 day = 5;
int32 start_hour = 6;
int32 end_hour = 7;
string color = 8;
}