From 4e3ba051958b89955930d4d227e83c967538fac3 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 23 Sep 2024 19:03:47 +0300 Subject: [PATCH] update readme --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index e25ac1c8..976a5f73 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,11 @@ This guide in process #### `browser` -* Main file must have `mod.rs` name because it may include additional submodules in same location like database, template, etc * The codebase of module must be as minimal as possible: separate different tasks to submodules * Every module or it helper must contain and implement only one `struct` * Composition modules (like box for window) stored in sub-folders and following same principles as parent * Every mod access 1 level of child API, never parents (e.g.`super`) * One mod = one widget. Create new mod for new widget implementation -* Mod constructor must return [Arc pointer](https://doc.rust-lang.org/std/sync/struct.Arc.html) for new object created (to support async operations) ### Contribution