Skip to content

Commit 68ebba4

Browse files
Permutive proxy (#108)
1 parent 5870901 commit 68ebba4

File tree

5 files changed

+909
-2
lines changed

5 files changed

+909
-2
lines changed

crates/common/src/integrations/mod.rs

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

55
pub mod nextjs;
6+
pub mod permutive;
67
pub mod prebid;
78
mod registry;
89
pub mod testlight;
@@ -17,5 +18,10 @@ pub use registry::{
1718
type IntegrationBuilder = fn(&Settings) -> Option<IntegrationRegistration>;
1819

1920
pub(crate) fn builders() -> &'static [IntegrationBuilder] {
20-
&[prebid::register, testlight::register, nextjs::register]
21+
&[
22+
prebid::register,
23+
testlight::register,
24+
nextjs::register,
25+
permutive::register,
26+
]
2127
}

0 commit comments

Comments
 (0)