Merge remote-tracking branch 'refs/remotes/origin/william/setup-db' into william/setup-db

This commit is contained in:
William Tran 2021-03-10 22:45:31 -05:00
commit 288de5a45b
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
import sqlite3 import sqlite3
con = sqlite3.connect('links.db') import os
DB_PATH = os.path.join(os.path.dirname(__file__), 'links.db')
con = sqlite3.connect(DB_PATH)
# array of links to store # array of links to store
links = [ links = [