# Importing

Need to define everything used in one file.

In Rust, super and crate are used to refer to different parts of the module hierarchy:

* super refers to the parent module of the current module. It allows you to access items defined in the parent module.
* crate refers to the root of the current crate. It allows you to access items defined at the top level of the crate.

```rust
use anyhow::{bail, Result};
use clap::Args;
use serde::Serialize;
use std::path::PathBuf;

use crate::flags::GlobalFormatFlags;

use crate::commands::apply_migration::{run_apply_migration, ApplyMigrationArgs};
use crate::workflows::fetch_remote_workflow;
use marzano_messenger::emit::VisibilityLevels;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://openai.gitbook.io/code-cheatsheets/rust/importing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
