RPG-Alex / rust-micro-cms

An attempt to tie together serverside logic, database logic, and client view all with Rust under the hood.
MIT License
3 stars 1 forks source link

Styling data needs to be standardized to be serialized for db, backend, frontend serialization #32

Closed RPG-Alex closed 5 months ago

RPG-Alex commented 5 months ago

seek issues #19 and #31

RPG-Alex commented 5 months ago

Have gone with a very simple structure for now, and will store as single string in db:

pub struct Style {
    pub css: String,
}