Skip to content

Commit f823315

Browse files
authored
Refactor prebid integration (#115)
1 parent c109ba3 commit f823315

File tree

13 files changed

+1111
-1199
lines changed

13 files changed

+1111
-1199
lines changed

crates/common/src/ad.rs

Lines changed: 0 additions & 435 deletions
This file was deleted.

crates/common/src/html_processor.rs

Lines changed: 170 additions & 132 deletions
Large diffs are not rendered by default.

crates/common/src/integrations/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
use crate::settings::Settings;
44

5+
pub mod prebid;
56
mod registry;
67
pub mod testlight;
78

@@ -15,5 +16,5 @@ pub use registry::{
1516
type IntegrationBuilder = fn(&Settings) -> Option<IntegrationRegistration>;
1617

1718
pub(crate) fn builders() -> &'static [IntegrationBuilder] {
18-
&[testlight::register]
19+
&[prebid::register, testlight::register]
1920
}

0 commit comments

Comments
 (0)