Skip to content

Commit

Permalink
fix public ip workload
Browse files Browse the repository at this point in the history
Signed-off-by: mariobassem <[email protected]>
  • Loading branch information
MarioBassem committed Aug 24, 2023
1 parent 9df13c7 commit a5fc8c7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
14 changes: 14 additions & 0 deletions 3bot/zos/ip.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module zos

pub struct PublicIP {
v4 bool
v6 bool
}

pub fn (p PublicIP) challenge() string {
mut output := ''
output += '${p.v4}'
output += '${p.v6}'

return output
}
7 changes: 0 additions & 7 deletions 3bot/zos/ipv4.v

This file was deleted.

0 comments on commit a5fc8c7

Please sign in to comment.