Skip to content

Commit

Permalink
refactor: Rename crystallib to herolib
Browse files Browse the repository at this point in the history
- Updated import paths to reflect the renaming of the
  `crystallib` module to `herolib`. This change improves
  consistency and clarity in the project structure.
  • Loading branch information
Mahmoud-Emad committed Feb 16, 2025
1 parent 2599fa6 commit ee1ac54
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/clients/runpod/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To get started
import freeflowuniverse.crystallib.clients. runpod
import freeflowuniverse.herolib.clients. runpod
mut client:= runpod.get()!
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/ourdb_fs/encoder.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ourdb_fs

import freeflowuniverse.crystallib.data.encoder
import freeflowuniverse.herolib.data.encoder

// encode_metadata encodes the common metadata structure
fn encode_metadata(mut e encoder.Encoder, m Metadata) {
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/ourdb_fs/factory.v
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ourdb_fs

import os
import freeflowuniverse.crystallib.data.ourdb
import freeflowuniverse.herolib.data.ourdb

// Factory method for creating a new OurDBFS instance
@[params]
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/ourdb_fs/vfs.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ourdb_fs

import freeflowuniverse.crystallib.data.ourdb
import freeflowuniverse.herolib.data.ourdb

// OurDBFS represents the virtual filesystem
@[heap]
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/vfsnested/vfsnested.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module vfsnested

import freeflowuniverse.crystallib.vfs.vfscore
import freeflowuniverse.herolib.vfs.vfscore

// NestedVFS represents a VFS that can contain multiple nested VFS instances
pub struct NestedVFS {
Expand Down
4 changes: 2 additions & 2 deletions lib/vfs/vfsourdb/vfsourdb.v
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module vfsourdb

import freeflowuniverse.crystallib.vfs.vfscore
import freeflowuniverse.crystallib.vfs.ourdb_fs
import freeflowuniverse.herolib.vfs.vfscore
import freeflowuniverse.herolib.vfs.ourdb_fs
import os
import time

Expand Down

0 comments on commit ee1ac54

Please sign in to comment.