| CogBase documentation | Contained in the CogBase distribution. |
| CogBase documentation | Contained in the CogBase distribution. |
package CogBase::Database; use CogBase::Base -base; use IO::All; sub create { my ($class, $db_path) = @_; io("$db_path/nodes")->mkpath; io("$db_path/index/hid")->mkpath; io("$db_path/index/type/Schema")->mkpath; }
1;