Skip to content

chore: split the main file into a few making it easier to read#12

Merged
tac0turtle merged 4 commits intomainfrom
marko/split_main
Jul 15, 2025
Merged

chore: split the main file into a few making it easier to read#12
tac0turtle merged 4 commits intomainfrom
marko/split_main

Conversation

@tac0turtle
Copy link
Contributor

@tac0turtle tac0turtle commented Jul 10, 2025

Description

This pr splits up main into a few files making it easier to read

Type of Change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update
  • Performance improvement
  • Refactoring

Related Issues

Fixes #(issue)

Checklist

  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published

Testing

Additional Notes

Summary by CodeRabbit

  • New Features

    • Introduced support for Rollkit payload attributes and builder integration, enabling extended payload handling with optional transaction data and gas limits.
    • Added command-line option to enable Rollkit mode.
    • Enhanced error reporting for transaction and gas limit validation.
  • Refactor

    • Moved Rollkit-specific payload builder and attribute logic out of the main application file into dedicated modules for improved maintainability.
  • Chores

    • Centralized error handling for Rollkit payload attribute validation.

@coderabbitai
Copy link

coderabbitai bot commented Jul 10, 2025

Warning

Rate limit exceeded

@tac0turtle has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 5 minutes and 55 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between ee29606 and e46e46b.

📒 Files selected for processing (4)
  • bin/lumen/src/attributes.rs (1 hunks)
  • bin/lumen/src/builder.rs (1 hunks)
  • bin/lumen/src/main.rs (1 hunks)
  • bin/lumen/src/validator.rs (1 hunks)

Walkthrough

The changes introduce three new Rust modules: attributes.rs, builder.rs, and error.rs, each encapsulating Rollkit-specific payload attributes, payload builder logic, and error handling, respectively. Corresponding Rollkit-related code is removed from main.rs, centralizing functionality for modularity and separation of concerns.

Changes

File(s) Change Summary
bin/lumen/src/attributes.rs Added module defining Rollkit payload attributes and builder attributes with trait implementations, including transaction decoding and gas limit handling.
bin/lumen/src/builder.rs Added module implementing Rollkit payload builder logic, CLI args, and trait integrations; includes synchronous wrapping of async payload building and fee comparison.
bin/lumen/src/error.rs Added module defining RollkitEngineError enum for Rollkit-specific error handling related to payload attributes validation.
bin/lumen/src/main.rs Removed all Rollkit payload builder, attributes, and error logic; retained only core node and validator code.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant Node
    participant RollkitBuilder
    participant TxPool

    User->>Node: Submit payload attributes (RollkitEnginePayloadAttributes)
    Node->>RollkitBuilder: Convert attributes and build payload (try_build)
    RollkitBuilder->>TxPool: Fetch transactions (if any)
    RollkitBuilder->>RollkitBuilder: Build sealed block (async)
    RollkitBuilder-->>Node: Return built payload or error
    Node-->>User: Respond with built payload or error
Loading

Poem

In the warren of code, we've tidied the nest,
With builders and errors now neatly addressed.
Attributes hop to their own little file,
While main.rs sits back and rests for a while.
Modular carrots for all to enjoy—
A rabbit-approved refactor, oh boy! 🥕

✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@tac0turtle tac0turtle marked this pull request as ready for review July 10, 2025 14:00
@tac0turtle tac0turtle requested a review from a team as a code owner July 10, 2025 14:00
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @tac0turtle, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on improving the codebase's organization and readability by refactoring a large main.rs file. It achieves this by extracting Rollkit-specific logic, including payload attributes, payload builder implementations, and custom error types, into new, dedicated modules. This modularization results in a clearer project structure and facilitates easier maintenance and future development.

Highlights

  • Refactoring Core Logic: Extracted Rollkit-specific payload attributes, builder logic, and error definitions from bin/lumen/src/main.rs into three new, dedicated modules: attributes.rs, builder.rs, and error.rs.
  • Improved Modularity: The bin/lumen/src/main.rs file has been significantly reduced in size and complexity, now serving primarily as an entry point that orchestrates components defined in separate, well-defined modules.
  • Enhanced Readability and Maintainability: By splitting concerns into distinct files, the codebase becomes easier to navigate, understand, and maintain for future development.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The code changes refactor the main application file by splitting it into attributes, builder, and error modules, which improves code organization and readability. The review includes suggestions for improvement, such as using more idiomatic Rust, removing unused fields, and addressing a TODO comment.

Comment on lines +73 to +76
#[allow(dead_code)]
pub(crate) pool: Pool,
#[allow(dead_code)]
pub(crate) config: RollkitPayloadBuilderConfig,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The pool and config fields in RollkitEnginePayloadBuilder are marked with #[allow(dead_code)] and appear to be unused. If these fields are not intended for future use, consider removing them to simplify the struct and its associated code.


let gas_used = sealed_block.gas_used;
Ok(EthBuiltPayload::new(
attributes.payload_id(), //TODO: make sure this works
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This line contains a TODO comment. Resolve TODOs before merging, or create a tracking issue and reference it in the comment if the work is to be deferred. In this case, using attributes.payload_id() is correct, so the TODO can likely be removed.

Suggested change
attributes.payload_id(), //TODO: make sure this works
attributes.payload_id(),

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
bin/lumen/src/builder.rs (3)

226-226: Address the TODO comment.

Please ensure the payload ID handling is verified and remove the TODO comment once confirmed.

Would you like me to help verify the payload ID implementation or open an issue to track this?


160-162: Document the synchronous async execution pattern.

The use of tokio::task::block_in_place with block_on is a valid approach when synchronous trait implementations need to call async methods. However, consider adding a comment explaining why this pattern is necessary here to help future maintainers understand the design decision.

Add documentation above these lines:

+        // The PayloadBuilder trait requires synchronous methods, but the underlying
+        // RollkitPayloadBuilder is async. We use block_in_place to avoid blocking
+        // the tokio runtime thread pool.
         let sealed_block = tokio::task::block_in_place(|| {
             tokio::runtime::Handle::current().block_on(rollkit_builder.build_payload(rollkit_attrs))
         })

Also applies to: 218-221


65-77: Remove or utilize unused fields.

The pool and config fields are marked with #[allow(dead_code)], indicating they're not currently used. Consider either:

  1. Removing them if they're not needed
  2. Implementing their intended functionality
  3. Adding a comment explaining why they're preserved for future use
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 44fe2dc and 4da5ec1.

📒 Files selected for processing (4)
  • bin/lumen/src/attributes.rs (1 hunks)
  • bin/lumen/src/builder.rs (1 hunks)
  • bin/lumen/src/error.rs (1 hunks)
  • bin/lumen/src/main.rs (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`bin/lumen/src/main.rs`: The `RollkitEngineTypes` in `bin/lumen/src/main.rs` sho...

bin/lumen/src/main.rs: The RollkitEngineTypes in bin/lumen/src/main.rs should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
The RollkitEngineValidator in bin/lumen/src/main.rs should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.

📄 Source: CodeRabbit Inference Engine (CLAUDE.md)

List of files the instruction was applied to:

  • bin/lumen/src/main.rs
🧠 Learnings (5)
📓 Common learnings
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Maintain a modular workspace structure to separate concerns between general node logic and Rollkit-specific features.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/node/src/builder.rs : The `RollkitPayloadBuilder` in `crates/node/src/builder.rs` should accept transactions from Engine API payload attributes, execute transactions, build blocks, and manage state transitions.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineTypes` in `bin/lumen/src/main.rs` should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineValidator` in `bin/lumen/src/main.rs` should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/tests/**/*.rs : Integration tests should be placed in `crates/tests/` and cover Engine API interactions, payload building with transactions, state execution validation, and Rollkit-specific scenarios.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Test specific crates using `make test-node`, `make test-rollkit`, or `make test-common`.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/**/src/**/*.rs : Unit tests should be written for individual components.
bin/lumen/src/error.rs (4)
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineTypes` in `bin/lumen/src/main.rs` should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineValidator` in `bin/lumen/src/main.rs` should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/node/src/builder.rs : The `RollkitPayloadBuilder` in `crates/node/src/builder.rs` should accept transactions from Engine API payload attributes, execute transactions, build blocks, and manage state transitions.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/tests/**/*.rs : Integration tests should be placed in `crates/tests/` and cover Engine API interactions, payload building with transactions, state execution validation, and Rollkit-specific scenarios.
bin/lumen/src/main.rs (7)
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineTypes` in `bin/lumen/src/main.rs` should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineValidator` in `bin/lumen/src/main.rs` should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/node/src/builder.rs : The `RollkitPayloadBuilder` in `crates/node/src/builder.rs` should accept transactions from Engine API payload attributes, execute transactions, build blocks, and manage state transitions.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/tests/**/*.rs : Integration tests should be placed in `crates/tests/` and cover Engine API interactions, payload building with transactions, state execution validation, and Rollkit-specific scenarios.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Run the node with defaults using `make run`, with debug logs using `make run-dev`, or directly via `./target/release/lumen node ...`.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Maintain a modular workspace structure to separate concerns between general node logic and Rollkit-specific features.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Test specific crates using `make test-node`, `make test-rollkit`, or `make test-common`.
bin/lumen/src/builder.rs (7)
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/node/src/builder.rs : The `RollkitPayloadBuilder` in `crates/node/src/builder.rs` should accept transactions from Engine API payload attributes, execute transactions, build blocks, and manage state transitions.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineTypes` in `bin/lumen/src/main.rs` should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineValidator` in `bin/lumen/src/main.rs` should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/tests/**/*.rs : Integration tests should be placed in `crates/tests/` and cover Engine API interactions, payload building with transactions, state execution validation, and Rollkit-specific scenarios.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Maintain a modular workspace structure to separate concerns between general node logic and Rollkit-specific features.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Test specific crates using `make test-node`, `make test-rollkit`, or `make test-common`.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Block validation should be relaxed for Rollkit-produced blocks (hash validation bypassed).
bin/lumen/src/attributes.rs (4)
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineTypes` in `bin/lumen/src/main.rs` should provide custom Engine API types supporting transaction submission and handle payload attribute validation and processing.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/node/src/builder.rs : The `RollkitPayloadBuilder` in `crates/node/src/builder.rs` should accept transactions from Engine API payload attributes, execute transactions, build blocks, and manage state transitions.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to bin/lumen/src/main.rs : The `RollkitEngineValidator` in `bin/lumen/src/main.rs` should bypass certain checks for Rollkit compatibility while maintaining security and allowing flexible block production.
Learnt from: CR
PR: rollkit/lumen#0
File: CLAUDE.md:0-0
Timestamp: 2025-06-30T15:38:11.650Z
Learning: Applies to crates/tests/**/*.rs : Integration tests should be placed in `crates/tests/` and cover Engine API interactions, payload building with transactions, state execution validation, and Rollkit-specific scenarios.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: integration success
  • GitHub Check: MSRV
  • GitHub Check: test
  • GitHub Check: e2e
🔇 Additional comments (3)
bin/lumen/src/error.rs (1)

1-13: LGTM! Well-structured error handling.

The error enum is properly designed with clear error messages and appropriate use of the thiserror crate. The #[from] attribute for PayloadAttributesError enables seamless error propagation.

bin/lumen/src/main.rs (1)

8-11: Excellent modularization!

The refactoring successfully separates concerns by moving Rollkit-specific implementations into dedicated modules. This aligns with the architectural principle of maintaining a modular workspace structure and significantly improves code organization.

Also applies to: 47-51

bin/lumen/src/attributes.rs (1)

17-113: Well-designed payload attributes implementation!

The separation between RollkitEnginePayloadAttributes (Engine API interface) and RollkitEnginePayloadBuilderAttributes (internal builder attributes) is clean. The transaction decoding logic correctly handles RLP-encoded transactions from Go clients, and error handling is properly implemented.

tac0turtle and others added 2 commits July 10, 2025 16:38
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
@tac0turtle tac0turtle merged commit 9397d29 into main Jul 15, 2025
15 checks passed
@tac0turtle tac0turtle deleted the marko/split_main branch July 15, 2025 07:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants