Rename the project to Echo (was fedserv)
Rebrand the daemon and workspace: the binary is now `echo`, every crate is `echo-*` (`echo-api` and the module crates), Rust imports use `echo_*`, the gRPC proto is `proto/echo.proto` with package `echo.v1`, and the log filter, gossip peer-name default, and on-disk store default (`echo.db.jsonl`) follow. Docs updated throughout. No behaviour change; crate directories and the config schema are untouched.
This commit is contained in:
parent
e7037572e5
commit
993f5b2eea
159 changed files with 660 additions and 660 deletions
|
|
@ -8,7 +8,7 @@
|
|||
// website only ever sees its own network's channels, matching what gossip
|
||||
// federates.
|
||||
syntax = "proto3";
|
||||
package fedserv.v1;
|
||||
package echo.v1;
|
||||
|
||||
service Directory {
|
||||
// One-shot full read of current state, for a subscriber's initial load.
|
||||
|
|
@ -92,7 +92,7 @@ message ChannelDescSet { string name = 1; string description = 2; }
|
|||
// NOT re-check the account's own password (the caller is trusted, the same
|
||||
// model as an admin-level override) — Register and Authenticate are the two
|
||||
// exceptions, since the password is the actual input/question there.
|
||||
// A write committed here replicates to every other fedserv node exactly like
|
||||
// A write committed here replicates to every other echo node exactly like
|
||||
// an IRC-originated one does — gossip doesn't know or care where it came from.
|
||||
service Accounts {
|
||||
rpc Register(RegisterRequest) returns (AccountReply);
|
||||
Loading…
Add table
Add a link
Reference in a new issue