Have a mostly working API server in go that's talking to streams/index.html and related pages.

This commit is contained in:
Zed A. Shaw 2025-05-31 14:12:08 -04:00
parent d49e1fbdc0
commit c576a61fbe
7 changed files with 168 additions and 21 deletions

4
setup.sql Normal file
View file

@ -0,0 +1,4 @@
insert into stream (title, description) values ('Zed First Stream', 'This is a stream yaaaaa.');
insert into stream (title, description) values ('Zed Second Stream', 'This is a stream yaaaaa even more streams.');
insert into stream_link (stream_id, url, description) values (1, 'http://127.0.0.1:5001', 'Test link home.');
insert into stream_link (stream_id, url, description) values (2, 'http://127.0.0.1:5001', 'Another link home.');