added form and db support

This commit is contained in:
steven carpenter 2025-07-03 21:21:25 -04:00
parent 5e4bc3ada7
commit ddb4469501
9 changed files with 504 additions and 48 deletions

View file

@ -2,7 +2,7 @@ syntax = "proto3";
package calendar;
option go_package = "calendar";
option go_package = "git.skdevstudios.com/SK-Development-Studios/GoCalTui/calendar";
message Event {
string title = 1;
@ -12,4 +12,6 @@ message Event {
int32 day = 5;
int32 start_hour = 6;
int32 end_hour = 7;
string color = 8;
}