This commit is contained in:
2024-07-05 23:57:32 +05:30
commit 8dbbe65a09
29 changed files with 554 additions and 0 deletions

9
src/students_view.v Normal file
View File

@@ -0,0 +1,9 @@
module main
import vweb
@['/student'; get]
pub fn (mut app App) student_view() vweb.Result {
return $vweb.html()
}