Tech Stack
- golang
- postgres
- kafka
- grpc/protobuf
- docker
- database version control
- firebase messaging
- infisical(secret management)
Todo
- Firebase Messaging for notifications
- Line mini app integration
An overly engineered simple accounting app for friends.
Friends' balances
Group bill split
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
option go_package = "github.com/SpeedReach/monify"; | ||
|
||
|
||
message UEmpty {} | ||
|
||
service UserService { | ||
rpc UpdateUserName (UpdateUserNameRequest) returns (UEmpty) {} | ||
|
||
} | ||
|
||
|
||
|
||
message UpdateUserNameRequest { | ||
string name = 1; | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package notification |