feat: add doctor and specialty management modules with full CRUD support and database seeding

This commit is contained in:
2026-07-18 22:29:28 +07:00
parent a85fc6e73f
commit fdbbb7c965
196 changed files with 3955 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
with open('src/main/resources/templates/doctor.html', 'r', encoding='utf-8') as f:
text = f.read()
import re
matches = re.finditer(r'.{0,100}chuyên khoa.{0,100}', text)
for m in matches:
print("Match:", m.group(0))