the-grid 0.1.0

A real-time autonomous simulation where your local file system comes alive with sentient AI programs
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

/// Represents an action broadcasted to the entire Grid
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Event {
    pub sender: String,
    pub action: String,
    pub content: String,
}