Skip to content

Commit

Permalink
nits: add comment to hex.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dieriba committed Jan 22, 2025
1 parent 8d4f935 commit 4483d6e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions backend/windmill-api/src/postgres_triggers/hex.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
use std::num::ParseIntError;


/**
* This implementation is inspired by Postgres replication functionality
* from https://github.com/supabase/pg_replicate
*
* Original implementation:
* - https://github.dev/supabase/pg_replicate/blob/main/pg_replicate/src/conversions/hex.rs
*
*/

use thiserror::Error;

#[derive(Debug, Error)]
Expand Down

0 comments on commit 4483d6e

Please sign in to comment.