♻️ Move the web reader to insight completely

This commit is contained in:
2026-01-02 01:23:45 +08:00
parent ede49333f8
commit 07b8c99682
65 changed files with 806 additions and 864 deletions

View File

@@ -0,0 +1,19 @@
syntax = "proto3";
package proto;
option csharp_namespace = "DysonNetwork.Shared.Proto";
import "google/protobuf/timestamp.proto";
message LinkEmbed {
string url = 1;
optional string title = 2;
optional string description = 3;
optional string image_url = 4;
optional string favicon_url = 5;
optional string site_name = 6;
optional string content_type = 7;
optional string author = 8;
optional google.protobuf.Timestamp published_date = 9;
}