Skip to content

Commit

Permalink
Add new Dev container module
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed Aug 16, 2023
1 parent 60a566d commit 33032b8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ This repository contains Rust libraries that are shared across Amphitheatre
components and libraries. They are considered internal to Amphitheatre, without
any stability guarantees for external usage.

- [**http**](src/http/): Represents the HTTP client for the API.
- [**config**](src/config/): Common configuration structures.
- [**devcontainer**](src/devcontainer): DevContainers related definitions and helpers
- [**docker**](src/docker/): Docker container & Registry wrappers.
- [**filesystem**](src/filesystem/): File system related structures and helpers.
- [**http**](src/http/): Represents the HTTP client for the API.
- [**schema**](src/schema/): The core schema includes manifest, playbook, and workspace.
- [**scm**](src/scm/): Provides a unified interface to multiple source code management systems.
- [**sync**](src/sync/): File synchronization structures and helpers.
Expand Down
13 changes: 13 additions & 0 deletions src/devcontainer/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2023 The Amphitheatre Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

pub mod config;
pub mod devcontainer;
pub mod docker;
pub mod filesystem;
pub mod http;
Expand Down

0 comments on commit 33032b8

Please sign in to comment.