refactor: Rename crystallib to herolib

- Updated import paths to reflect the renaming of the
  `crystallib` module to `herolib`. This change improves
  consistency and clarity in the project structure.
This commit is contained in:
Mahmoud Emad
2025-02-16 13:01:50 +00:00
parent 2599fa6859
commit ee1ac54dde
6 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ To get started
import freeflowuniverse.crystallib.clients. runpod
import freeflowuniverse.herolib.clients. runpod
mut client:= runpod.get()!

View File

@@ -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) {

View File

@@ -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]

View File

@@ -1,6 +1,6 @@
module ourdb_fs
import freeflowuniverse.crystallib.data.ourdb
import freeflowuniverse.herolib.data.ourdb
// OurDBFS represents the virtual filesystem
@[heap]

View File

@@ -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 {

View File

@@ -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