Skip to content

Commit

Permalink
Merge pull request #203 from Screenly/feature/3/validate_setting_names
Browse files Browse the repository at this point in the history
Feature/3/validate setting names
  • Loading branch information
korvyashka authored Aug 12, 2024
2 parents 6cdc366 + c1747f5 commit e4ac8dc
Show file tree
Hide file tree
Showing 13 changed files with 2,822 additions and 2,740 deletions.
8 changes: 4 additions & 4 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ use thiserror::Error;

use crate::authentication::{verify_and_store_token, Authentication, AuthenticationError, Config};
use crate::commands;
use crate::commands::edge_app_manifest::EdgeAppManifest;
use crate::commands::edge_app_server::MOCK_DATA_FILENAME;
use crate::commands::edge_app_utils::{
use crate::commands::edge_app::instance_manifest::InstanceManifest;
use crate::commands::edge_app::manifest::EdgeAppManifest;
use crate::commands::edge_app::server::MOCK_DATA_FILENAME;
use crate::commands::edge_app::utils::{
transform_edge_app_path_to_manifest, transform_instance_path_to_instance_manifest,
validate_manifests_dependacies,
};
use crate::commands::instance_manifest::InstanceManifest;
use crate::commands::playlist::PlaylistCommand;
use crate::commands::{CommandError, Formatter, OutputType, PlaylistFile};
const DEFAULT_ASSET_DURATION: u32 = 15;
Expand Down
Loading

0 comments on commit e4ac8dc

Please sign in to comment.