mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-02-10 22:18:12 +00:00
Reviewed By: zertosh Differential Revision: D38485027 fbshipit-source-id: 0f5e5b743e002045c95aca427b76e969d6bce347
18 lines
401 B
Rust
18 lines
401 B
Rust
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
|
|
use crate::filter::Filter;
|
|
|
|
#[derive(Clone, Default, Serialize, Deserialize)]
|
|
pub struct Config {
|
|
pub filters: Vec<Filter>,
|
|
}
|