start crystal side of things

This commit is contained in:
2023-07-14 10:03:51 -03:00
10 changed files with 184 additions and 118 deletions

9
spec/shortcodes_spec.cr Normal file
View File

@ -0,0 +1,9 @@
require "./spec_helper"
describe Shortcodes do
# TODO: Write tests
it "works" do
false.should eq(true)
end
end

2
spec/spec_helper.cr Normal file
View File

@ -0,0 +1,2 @@
require "spec"
require "../src/shortcodes"