[view] refactoring: URL regex

This commit is contained in:
Vinicius Moreira
2023-12-01 07:36:11 -03:00
parent a4c24c8aa6
commit 4000f0116a
3 changed files with 7 additions and 7 deletions

3
bauh/commons/regex.py Normal file
View File

@@ -0,0 +1,3 @@
import re
RE_URL = re.compile(r"^https?://.+$")