Sketch of an integration test

This commit is contained in:
Lennart
2025-02-08 12:51:26 +01:00
parent 180295ef1a
commit a71000ccf7
2 changed files with 65 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ use crate::config::{
#[derive(Debug, Parser)]
pub struct GenConfigArgs {}
fn generate_frontend_secret() -> [u8; 64] {
pub fn generate_frontend_secret() -> [u8; 64] {
let mut rng = rand::thread_rng();
let mut secret = [0u8; 64];