feat: create network, and manage members, invitations (#74)

This commit was merged in pull request #74.
This commit is contained in:
Arjun Patel
2026-03-24 19:50:06 -07:00
committed by GitHub
parent bf0147d542
commit 3d52fa6ccc
14 changed files with 655 additions and 39 deletions
+4 -3
View File
@@ -13,7 +13,8 @@ type Network struct {
}
type Invitation struct {
NetworkID string
Email string
CreatedAt time.Time
NetworkID string
NetworkName string
Email string
CreatedAt time.Time
}